Additional kovan params (#4892)

This commit is contained in:
Arkadiy Paronyan
2017-03-14 11:41:56 +01:00
committed by Gav Wood
parent 84fcefba1b
commit 43871e393c
8 changed files with 15 additions and 8 deletions

View File

@@ -393,7 +393,7 @@ impl Client {
})?;
// Final Verification
if let Err(e) = self.verifier.verify_block_final(header, locked_block.block().header()) {
if let Err(e) = self.verifier.verify_block_final(header, locked_block.block().header(), self.engine().params().validate_receipts) {
warn!(target: "client", "Stage 4 block verification failed for #{} ({})\nError: {:?}", header.number(), header.hash(), e);
return Err(());
}