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?a=commitdiff_plain;h=8fc81f29c891eb6926fb85f0a133b2cd5a89683a;p=rust-lightning Connect blocks at the end --- diff --git a/fuzz/src/full_stack.rs b/fuzz/src/full_stack.rs index 2237e9133..21e6e5d46 100644 --- a/fuzz/src/full_stack.rs +++ b/fuzz/src/full_stack.rs @@ -220,6 +220,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(&[]); + } } } }