From: Matt Corallo Date: Wed, 24 Aug 2022 21:07:44 +0000 (+0000) Subject: Clarify ambiguous comment in persist methods X-Git-Tag: v0.0.112~24^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=52934e0fff87ddab19c82e50eee832fbed08c477;p=rust-lightning Clarify ambiguous comment in persist methods --- diff --git a/lightning/src/util/persist.rs b/lightning/src/util/persist.rs index da55c381..cfd8f5d8 100644 --- a/lightning/src/util/persist.rs +++ b/lightning/src/util/persist.rs @@ -69,8 +69,8 @@ impl<'a, A: KVStorePersister, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Der impl Persist for K { // TODO: We really need a way for the persister to inform the user that its time to crash/shut // down once these start returning failure. - // A PermanentFailure implies we need to shut down since we're force-closing channels without - // even broadcasting! + // A PermanentFailure implies we should probably just shut down the node since we're + // force-closing channels without even broadcasting! fn persist_new_channel(&self, funding_txo: OutPoint, monitor: &ChannelMonitor, _update_id: MonitorUpdateId) -> chain::ChannelMonitorUpdateStatus { let key = format!("monitors/{}_{}", funding_txo.txid.to_hex(), funding_txo.index);