From ece2fcc56a4425b99c4719717c40a9240e668268 Mon Sep 17 00:00:00 2001 From: Ignotus Peverell Date: Tue, 3 Jul 2018 22:26:38 +0100 Subject: [PATCH] Comment out kernel history check until fixed --- chain/src/txhashset.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chain/src/txhashset.rs b/chain/src/txhashset.rs index 0e0524ef8..a58f7e4ac 100644 --- a/chain/src/txhashset.rs +++ b/chain/src/txhashset.rs @@ -931,7 +931,8 @@ impl<'a> Extension<'a> { // Verify kernel roots for all past headers, need to be last as it rewinds // a lot without resetting - self.verify_kernel_history(header)?; + // TODO broken in fast sync, fix + // self.verify_kernel_history(header)?; Ok((output_sum, kernel_sum)) }