mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 06:21:40 +01:00
sweep: fix error logging
This commit is contained in:
parent
a099261726
commit
5dd45660cd
1 changed files with 3 additions and 1 deletions
|
@ -1356,7 +1356,9 @@ func (t *TxPublisher) createAndPublishTx(
|
|||
if errors.Is(result.Err, chain.ErrInsufficientFee) ||
|
||||
errors.Is(result.Err, lnwallet.ErrMempoolFee) {
|
||||
|
||||
log.Debugf("Failed to bump tx %v: %v", oldTx.TxHash(), err)
|
||||
log.Debugf("Failed to bump tx %v: %v", oldTx.TxHash(),
|
||||
result.Err)
|
||||
|
||||
return fn.None[BumpResult]()
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue