File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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
43034303 }
43044304 } else if msg.next_local_commitment_number < next_counterparty_commitment_number {
43054305 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)",
43074307 msg.next_local_commitment_number,
43084308 next_counterparty_commitment_number,
43094309 )))
43104310 } else {
43114311 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)",
43134313 msg.next_local_commitment_number,
43144314 next_counterparty_commitment_number,
43154315 )))
You can’t perform that action at this time.
0 commit comments