Browse Source

check nonce

cl-refactor
CJentzsch 10 years ago
parent
commit
1bc547dc48
  1. 2
      libethereum/BlockChain.cpp

2
libethereum/BlockChain.cpp

@ -1072,7 +1072,7 @@ VerifiedBlockRef BlockChain::verifyBlock(bytes const& _block, function<void(Exce
try
{
Strictness strictness = Strictness::CheckEverything;
if (_ir & ~ImportRequirements::ValidNonce)
if (~_ir & ImportRequirements::ValidNonce)
strictness = Strictness::IgnoreNonce;
res.info.populate(_block, strictness);

Loading…
Cancel
Save