From: Matt Corallo Date: Fri, 17 Aug 2018 21:42:28 +0000 (-0400) Subject: Connect blocks at the end X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=rust-lightning;a=commitdiff_plain;h=135489d7b47828da7ecf7ec624bcb4b35cbfbf95 Connect blocks at the end --- diff --git a/fuzz/src/full_stack.rs b/fuzz/src/full_stack.rs index 2af173cf..ff3ef74e 100644 --- a/fuzz/src/full_stack.rs +++ b/fuzz/src/full_stack.rs @@ -222,6 +222,9 @@ impl<'a> Drop for MoneyLossDetector<'a> { // Force all channels onto the chain (and time out claim txn) self.manager.force_close_all_channels(); + for _ in 0..6*24*14 { + self.connect_block(&[]); + } } } }