From: Jeffrey Czyz Date: Fri, 5 Mar 2021 01:39:21 +0000 (-0800) Subject: Remove last_block_connected from Channel X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=d788e36b514fecea47fa27c029ef86146692729f;hp=d788e36b514fecea47fa27c029ef86146692729f;p=rust-lightning Remove last_block_connected from Channel Tracking the last block was only used to de-duplicate block_connected calls, but this is no longer required as of the previous commit. Further, the ChannelManager can pass the latest block hash when needing to create a ChannelMonitor rather than have each Channel maintain an up-to-date copy. This is implemented in the next commit. ---