Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Fix for slow machine. #1139
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Jan 24, 2018
1 parent 1a24f80 commit 6042131
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/eosiod_run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,8 +580,8 @@ def cmdError(name, code=0, exitNow=False):
# errorExit("mongo get messages by transaction id %s" % (transId))


Print("Request invalid block numbered %d" % (currentBlockNum+100))
block=node.getBlock(currentBlockNum+100, silentErrors=True, retry=False)
Print("Request invalid block numbered %d" % (currentBlockNum+1000))
block=node.getBlock(currentBlockNum+1000, silentErrors=True, retry=False)
if block is not None:
errorExit("ERROR: Received block where not expected")
else:
Expand Down

0 comments on commit 6042131

Please sign in to comment.