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 9d4c84f commit 7cbbd2bCopy full SHA for 7cbbd2b
lightning/src/ln/channel.rs
@@ -3433,7 +3433,7 @@ impl<Signer: Sign> Channel<Signer> {
3433
pub fn timer_check_closing_negotiation_progress(&mut self) -> Result<(), ChannelError> {
3434
if self.closing_negotiation_ready() {
3435
if self.closing_signed_in_flight {
3436
- return Err(ChannelError::Close("closing_signed negotiation failed to finish within one minute".to_owned()));
+ return Err(ChannelError::Close("closing_signed negotiation failed to finish within two timer ticks".to_owned()));
3437
} else {
3438
self.closing_signed_in_flight = true;
3439
}
0 commit comments