Skip to content

Commit da2bc67

Browse files
committed
f clearer log
1 parent 0ed5c5e commit da2bc67

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
@@ -7435,7 +7435,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
74357435
};
74367436
Some(EventCompletionAction::ReleasePaymentCompleteChannelMonitorUpdate(release))
74377437
} else {
7438-
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");
7438+
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");
74397439
None
74407440
}
74417441
} else {
@@ -9579,7 +9579,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
95799579
htlc_id: SentHTLCId::from_source(&htlc_update.source),
95809580
})
95819581
} else {
9582-
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");
9582+
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");
95839583
None
95849584
};
95859585
self.fail_htlc_backwards_internal(
@@ -14150,7 +14150,7 @@ where
1415014150
EventCompletionAction::ReleasePaymentCompleteChannelMonitorUpdate(update)
1415114151
)
1415214152
} else {
14153-
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");
14153+
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");
1415414154
None
1415514155
};
1415614156
// Note that we set `from_onchain` to "false" here,

0 commit comments

Comments
 (0)