mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-05-13 05:10:06 +02:00
sweep: fix error logging
This commit is contained in:
parent
353f208031
commit
7ab0e15937
@ -1356,7 +1356,9 @@ func (t *TxPublisher) createAndPublishTx(
|
|||||||
if errors.Is(result.Err, chain.ErrInsufficientFee) ||
|
if errors.Is(result.Err, chain.ErrInsufficientFee) ||
|
||||||
errors.Is(result.Err, lnwallet.ErrMempoolFee) {
|
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]()
|
return fn.None[BumpResult]()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user