diff --git a/lightspark-crypto-go/signing.go b/lightspark-crypto-go/signing.go index b63b8d9..5140ebe 100644 --- a/lightspark-crypto-go/signing.go +++ b/lightspark-crypto-go/signing.go @@ -231,6 +231,7 @@ type FundsRecoveryResponse struct{ SweepTx string HtlcInboundTx []Pair HtlcOutboundTx []Pair + CounterpartySweepTx string CounterpartyHtlcInboundTx []string CounterpartyHtlcOutboundTx []string } @@ -248,6 +249,7 @@ func SignTransactions (masterSeed string, data string, network BitcoinNetwork) ( SweepTx: resp.SweepTx, HtlcInboundTx: toPairArray(resp.HtlcInboundTx), HtlcOutboundTx: toPairArray(resp.HtlcOutboundTx), + CounterpartySweepTx: resp.CounterpartySweepTx, CounterpartyHtlcInboundTx: resp.CounterpartyHtlcInboundTx, CounterpartyHtlcOutboundTx: resp.CounterpartyHtlcOutboundTx, }, nil