Skip to content

Commit ae6141d

Browse files
committed
f clearer log
1 parent 0626324 commit ae6141d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7437,7 +7437,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
74377437
};
74387438
Some(EventCompletionAction::ReleasePaymentCompleteChannelMonitorUpdate(release))
74397439
} else {
7440-
log_warn!(self.logger, "Missing counterparty node id in monitor when trying to re-claim a payment resolved on chain. This may lead to redundant payment claims on restart");
7440+
log_warn!(self.logger, "Missing counterparty node id in monitor when trying to re-claim a payment resolved on chain. This may lead to redundant PaymentSent events on restart");
74417441
None
74427442
}
74437443
} else {
@@ -9581,7 +9581,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
95819581
htlc_id: SentHTLCId::from_source(&htlc_update.source),
95829582
})
95839583
} else {
9584-
log_warn!(self.logger, "Missing counterparty node id in monitor when trying to re-claim a payment resolved on chain. This may lead to redundant payment claims on restart");
9584+
log_warn!(self.logger, "Missing counterparty node id in monitor when trying to re-claim a payment resolved on chain. This may lead to redundant PaymentSent events on restart");
95859585
None
95869586
};
95879587
self.fail_htlc_backwards_internal(
@@ -14152,7 +14152,7 @@ where
1415214152
EventCompletionAction::ReleasePaymentCompleteChannelMonitorUpdate(update)
1415314153
)
1415414154
} else {
14155-
log_warn!(logger, "Missing counterparty node id in monitor when trying to re-claim a payment resolved on chain. This may lead to redundant payment claims on restart");
14155+
log_warn!(logger, "Missing counterparty node id in monitor when trying to re-claim a payment resolved on chain. This may lead to redundant PaymentSent events on restart");
1415614156
None
1415714157
};
1415814158
// Note that we set `from_onchain` to "false" here,

0 commit comments

Comments
 (0)