Drop duplicative current-local-tx storage in channel.
[rust-lightning] / lightning / src / ln / channelmonitor.rs
index ea84b984ed7bb122e540c99fb102c7d62498bba9..bde08bc514a816d5f52848772d9524528b87e0e6 100644 (file)
@@ -2316,6 +2316,7 @@ impl ChannelMonitor {
        /// out-of-band the other node operator to coordinate with him if option is available to you.
        /// In any-case, choice is up to the user.
        pub fn get_latest_local_commitment_txn(&self) -> Vec<Transaction> {
+               log_trace!(self, "Getting signed latest local commitment transaction!");
                if let &Some(ref local_tx) = &self.current_local_signed_commitment_tx {
                        let mut res = vec![local_tx.tx.clone()];
                        match self.key_storage {