mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
lightningd: don't spam with RBF messages if fee hasn't changed.
Reported-by: @19710405 on GitHub Fixes: #6283 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
@@ -845,12 +845,17 @@ static bool consider_onchain_rebroadcast(struct channel *channel,
|
|||||||
|
|
||||||
bitcoin_txid(newtx, &newtxid);
|
bitcoin_txid(newtx, &newtxid);
|
||||||
bitcoin_txid(*tx, &oldtxid);
|
bitcoin_txid(*tx, &oldtxid);
|
||||||
log_info(channel->log,
|
|
||||||
|
/* Don't spam the logs! */
|
||||||
|
log_(channel->log,
|
||||||
|
amount_sat_less_eq(newfee, info->fee) ? LOG_DBG : LOG_INFORM,
|
||||||
|
NULL, false,
|
||||||
"RBF onchain txid %s (fee %s) with txid %s (fee %s)",
|
"RBF onchain txid %s (fee %s) with txid %s (fee %s)",
|
||||||
type_to_string(tmpctx, struct bitcoin_txid, &oldtxid),
|
type_to_string(tmpctx, struct bitcoin_txid, &oldtxid),
|
||||||
fmt_amount_sat(tmpctx, info->fee),
|
fmt_amount_sat(tmpctx, info->fee),
|
||||||
type_to_string(tmpctx, struct bitcoin_txid, &newtxid),
|
type_to_string(tmpctx, struct bitcoin_txid, &newtxid),
|
||||||
fmt_amount_sat(tmpctx, newfee));
|
fmt_amount_sat(tmpctx, newfee));
|
||||||
|
|
||||||
log_debug(channel->log,
|
log_debug(channel->log,
|
||||||
"RBF %s->%s",
|
"RBF %s->%s",
|
||||||
type_to_string(tmpctx, struct bitcoin_tx, *tx),
|
type_to_string(tmpctx, struct bitcoin_tx, *tx),
|
||||||
|
|||||||
Reference in New Issue
Block a user