Skip to content

Commit 7cbbd2b

Browse files
committed
f clarify error message
1 parent 9d4c84f commit 7cbbd2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/channel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3433,7 +3433,7 @@ impl<Signer: Sign> Channel<Signer> {
34333433
pub fn timer_check_closing_negotiation_progress(&mut self) -> Result<(), ChannelError> {
34343434
if self.closing_negotiation_ready() {
34353435
if self.closing_signed_in_flight {
3436-
return Err(ChannelError::Close("closing_signed negotiation failed to finish within one minute".to_owned()));
3436+
return Err(ChannelError::Close("closing_signed negotiation failed to finish within two timer ticks".to_owned()));
34373437
} else {
34383438
self.closing_signed_in_flight = true;
34393439
}

0 commit comments

Comments
 (0)