Skip to content

Commit de3d2d8

Browse files
committed
f and
1 parent 73a228b commit de3d2d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4663,7 +4663,7 @@ impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
46634663
log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
46644664
log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
46654665
log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
4666-
log_error!(args.logger, " Please ensure the chain::Watch API requirements are met file a bug report at https://github.com/rust-bitcoin/rust-lightning");
4666+
log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/rust-bitcoin/rust-lightning");
46674667
return Err(DecodeError::InvalidValue);
46684668
} else if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
46694669
channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
@@ -4684,7 +4684,7 @@ impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
46844684
log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
46854685
log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
46864686
log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
4687-
log_error!(args.logger, " Please ensure the chain::Watch API requirements are met file a bug report at https://github.com/rust-bitcoin/rust-lightning");
4687+
log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/rust-bitcoin/rust-lightning");
46884688
return Err(DecodeError::InvalidValue);
46894689
}
46904690
}

0 commit comments

Comments
 (0)