We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e6bae commit c28cce2Copy full SHA for c28cce2
src/event.rs
@@ -1123,8 +1123,10 @@ where
1123
if spendable_amount_sats < required_amount_sats {
1124
log_error!(
1125
self.logger,
1126
- "Rejecting inbound Anchor channel from peer {} due to insufficient available on-chain reserves.",
+ "Rejecting inbound Anchor channel from peer {} due to insufficient available on-chain reserves. Available: {}/{}sats",
1127
counterparty_node_id,
1128
+ spendable_amount_sats,
1129
+ required_amount_sats,
1130
);
1131
self.channel_manager
1132
.force_close_without_broadcasting_txn(
0 commit comments