Browse Source

Extra debug notice.

cl-refactor
Gav Wood 10 years ago
parent
commit
6ac8338992
  1. 3
      libethcore/Ethash.cpp

3
libethcore/Ethash.cpp

@ -108,7 +108,10 @@ bool Ethash::verify(BlockInfo const& _header)
bool pre = preVerify(_header);
#if !ETH_DEBUG
if (!pre)
{
cdebug << "Fail on preVerify";
return false;
}
#endif
auto result = EthashAux::eval(_header);

Loading…
Cancel
Save