Skip to content

Commit

Permalink
Merge pull request #1391 from AntelopeIO/GH-1383-ship-test-main
Browse files Browse the repository at this point in the history
[4.0 -> main] Test: Fix ship test to wait on correct transaction
  • Loading branch information
heifner authored Jul 11, 2023
2 parents 9469b56 + 925b642 commit 08c2b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ship_streamer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def getLatestSnapshot(nodeId):
nonProdNode.waitForTransBlockIfNeeded(trans, True, exitOnError=True)
for account in accounts:
Print(f"Transfer funds {transferAmount} from account {cluster.eosioAccount.name} to {account.name}")
nonProdNode.transferFunds(cluster.eosioAccount, account, transferAmount, "test transfer", waitForTransBlock=False)
trans=nonProdNode.transferFunds(cluster.eosioAccount, account, transferAmount, "test transfer", waitForTransBlock=False)
nonProdNode.waitForTransBlockIfNeeded(trans, True, exitOnError=True)
for account in accounts:
trans=nonProdNode.delegatebw(account, 20000000.0000, 20000000.0000, waitForTransBlock=False, exitOnError=True)
Expand Down

0 comments on commit 08c2b81

Please sign in to comment.