Browse Source

Actually relax timestamp.

cl-refactor
Gav Wood 11 years ago
parent
commit
78dae17c49
  1. 2
      libethereum/BlockQueue.cpp

2
libethereum/BlockQueue.cpp

@ -71,7 +71,7 @@ bool BlockQueue::import(bytesConstRef _block, BlockChain const& _bc)
} }
// Check it's not crazy // Check it's not crazy
if (bi.timestamp > (u256)time(0) - 10) if (bi.timestamp > (u256)time(0) + 10)
{ {
cnote << "Invalid timestamp."; cnote << "Invalid timestamp.";
return false; return false;

Loading…
Cancel
Save