diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-12 21:30:28 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-21 19:26:49 +0000 |
commit | 8dcd4d3d11368c7c599cb4c675ea172a816b52c9 (patch) | |
tree | 8b54728de6554c01a483950c5bdfa38345ff88e5 /tests/functional_tests/speed.py | |
parent | Merge pull request #5267 (diff) | |
download | monero-8dcd4d3d11368c7c599cb4c675ea172a816b52c9.tar.xz |
functional_tests: improve RPC blockchain tests
Diffstat (limited to 'tests/functional_tests/speed.py')
-rwxr-xr-x | tests/functional_tests/speed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional_tests/speed.py b/tests/functional_tests/speed.py index 3d2af9a10..0ce90f939 100755 --- a/tests/functional_tests/speed.py +++ b/tests/functional_tests/speed.py @@ -58,7 +58,7 @@ class SpeedTest(): self._test_speed_generateblocks(daemon=daemon, blocks=70) for i in range(1, 10): - while wallet.get_balance()['unlocked_balance'] == 0: + while wallet.get_balance().unlocked_balance == 0: print('Waiting for wallet to refresh...') sleep(1) self._test_speed_transfer_split(wallet=wallet) |