File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4303,13 +4303,13 @@ impl<SP: Deref> Channel<SP> where
4303
4303
}
4304
4304
} else if msg.next_local_commitment_number < next_counterparty_commitment_number {
4305
4305
Err(ChannelError::Close(format!(
4306
- "Peer attempted to reestablish channel with a very old local commitment transaction: {} (received) vs {} (expected)",
4306
+ "Peer attempted to reestablish channel with a very old remote commitment transaction: {} (received) vs {} (expected)",
4307
4307
msg.next_local_commitment_number,
4308
4308
next_counterparty_commitment_number,
4309
4309
)))
4310
4310
} else {
4311
4311
Err(ChannelError::Close(format!(
4312
- "Peer attempted to reestablish channel with a future local commitment transaction: {} (received) vs {} (expected)",
4312
+ "Peer attempted to reestablish channel with a future remote commitment transaction: {} (received) vs {} (expected)",
4313
4313
msg.next_local_commitment_number,
4314
4314
next_counterparty_commitment_number,
4315
4315
)))
You can’t perform that action at this time.
0 commit comments