mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-28 22:50:58 +02:00
lnwallet: for rbf coop close, log the close tx
This commit is contained in:
@@ -153,11 +153,11 @@ type mockCloseSigner struct {
|
||||
func (m *mockCloseSigner) CreateCloseProposal(fee btcutil.Amount,
|
||||
localScript []byte, remoteScript []byte,
|
||||
closeOpt ...lnwallet.ChanCloseOpt) (
|
||||
input.Signature, *chainhash.Hash, btcutil.Amount, error) {
|
||||
input.Signature, *wire.MsgTx, btcutil.Amount, error) {
|
||||
|
||||
args := m.Called(fee, localScript, remoteScript, closeOpt)
|
||||
|
||||
return args.Get(0).(input.Signature), args.Get(1).(*chainhash.Hash),
|
||||
return args.Get(0).(input.Signature), args.Get(1).(*wire.MsgTx),
|
||||
args.Get(2).(btcutil.Amount), args.Error(3)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user