From 83f25c98a384ec9518df6e918e333ebef0334b65 Mon Sep 17 00:00:00 2001 From: Joost Jager Date: Wed, 17 Jun 2020 08:27:01 +0200 Subject: [PATCH] loopd: return missing p2wsh loop out address --- loopd/swapclient_server.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/loopd/swapclient_server.go b/loopd/swapclient_server.go index ad2be6f..542843b 100644 --- a/loopd/swapclient_server.go +++ b/loopd/swapclient_server.go @@ -110,9 +110,10 @@ func (s *swapClientServer) LoopOut(ctx context.Context, } return &looprpc.SwapResponse{ - Id: hash.String(), - IdBytes: hash[:], - HtlcAddress: htlc.String(), + Id: hash.String(), + IdBytes: hash[:], + HtlcAddress: htlc.String(), + HtlcAddressP2Wsh: htlc.String(), }, nil }