diff options
Diffstat (limited to 'tests/functional_tests/proofs.py')
-rwxr-xr-x | tests/functional_tests/proofs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/functional_tests/proofs.py b/tests/functional_tests/proofs.py index f443ba795..7beb3ec6e 100755 --- a/tests/functional_tests/proofs.py +++ b/tests/functional_tests/proofs.py @@ -50,7 +50,8 @@ class ProofsTest(): 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 mine(self, address, blocks): |