aboutsummaryrefslogtreecommitdiff
path: root/tests/functional_tests/wallet.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional_tests/wallet.py')
-rwxr-xr-xtests/functional_tests/wallet.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/functional_tests/wallet.py b/tests/functional_tests/wallet.py
index 2240f96ec..85f6a4955 100755
--- a/tests/functional_tests/wallet.py
+++ b/tests/functional_tests/wallet.py
@@ -74,7 +74,8 @@ class WalletTest():
def reset(self):
print('Resetting blockchain')
daemon = Daemon()
- daemon.pop_blocks(1000)
+ res = daemon.get_height()
+ daemon.pop_blocks(res.height - 1)
daemon.flush_txpool()
def create(self):