Clean up a few comments after #11 merge.
[rust-lightning] / src / ln / channelmonitor.rs
index ac08bf5a37bbfa402a1b40179986c5d1cdc6b4f9..d5529af9c99e579d7f169446cf50f4022b151c70 100644 (file)
@@ -456,7 +456,7 @@ impl ChannelMonitor {
                        for txin in tx.input.iter() {
                                if self.funding_txo.is_none() || (txin.prev_hash == self.funding_txo.unwrap().0 && txin.prev_index == self.funding_txo.unwrap().1 as u32) {
                                        for tx in self.check_spend_transaction(tx, height).iter() {
-                                               broadcaster.broadcast_transaction(tx); // TODO: use result
+                                               broadcaster.broadcast_transaction(tx);
                                        }
                                }
                        }