mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-30 07:35:07 +02:00
lnwallet: add CancelRebroadcast method.
Adding the ability to stop rebroadcasting a transaction. This is useful when we want to abandon a channel and grantee that this transaction will not confirm accidentally.
This commit is contained in:
@@ -2315,6 +2315,15 @@ func (l *LightningWallet) ValidateChannel(channelState *channeldb.OpenChannel,
|
||||
return nil
|
||||
}
|
||||
|
||||
// CancelRebroadcast cancels the rebroadcast of the given transaction.
|
||||
func (l *LightningWallet) CancelRebroadcast(txid chainhash.Hash) {
|
||||
// For neutrino, we don't config the rebroadcaster for the wallet as it
|
||||
// manages the rebroadcasting logic in neutrino itself.
|
||||
if l.Cfg.Rebroadcaster != nil {
|
||||
l.Cfg.Rebroadcaster.MarkAsConfirmed(txid)
|
||||
}
|
||||
}
|
||||
|
||||
// CoinSource is a wrapper around the wallet that implements the
|
||||
// chanfunding.CoinSource interface.
|
||||
type CoinSource struct {
|
||||
|
Reference in New Issue
Block a user