aboutsummaryrefslogtreecommitdiff
path: root/tests/functional_tests/cold_signing.py
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-04-19 22:47:44 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-04-20 11:28:19 +0000
commitaba2b2e7a2cb5cf3983d4d7e7e2946fbdb5e22be (patch)
tree926f432c78bbdfa78d8b3002f15c5d0936a20db6 /tests/functional_tests/cold_signing.py
parenthardfork: fix off by one updating fork index after popping (diff)
downloadmonero-aba2b2e7a2cb5cf3983d4d7e7e2946fbdb5e22be.tar.xz
functional_tests: reset blockchain on test start
Diffstat (limited to 'tests/functional_tests/cold_signing.py')
-rwxr-xr-xtests/functional_tests/cold_signing.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/functional_tests/cold_signing.py b/tests/functional_tests/cold_signing.py
index e5430f87c..59a879e0a 100755
--- a/tests/functional_tests/cold_signing.py
+++ b/tests/functional_tests/cold_signing.py
@@ -38,10 +38,17 @@ from framework.wallet import Wallet
class ColdSigningTest():
def run_test(self):
+ self.reset()
self.create(0)
self.mine()
self.transfer()
+ def reset(self):
+ print 'Resetting blockchain'
+ daemon = Daemon()
+ daemon.pop_blocks(1000)
+ daemon.flush_txpool()
+
def create(self, idx):
print 'Creating hot and cold wallet'