diff options
author | Andrew Chow <achow101-github@achow101.com> | 2017-06-06 11:43:24 -0700 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2017-06-08 17:19:39 -0700 |
commit | 3ec5ad88e67bba74c795575d52c97fd2c7e880c1 (patch) | |
tree | cee5030718555f704718a126fe0d5f3a24714a4c /test/functional/pruning.py | |
parent | c53c9831eedaf3b311bb942945268830f9ba3abc (diff) |
Add test for rpcuser/rpcpassword
Diffstat (limited to 'test/functional/pruning.py')
-rwxr-xr-x | test/functional/pruning.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/pruning.py b/test/functional/pruning.py index 4c3501ad77..37e9d29738 100755 --- a/test/functional/pruning.py +++ b/test/functional/pruning.py @@ -315,7 +315,7 @@ class PruneTest(BitcoinTestFramework): # check that the pruning node's wallet is still in good shape self.log.info("Stop and start pruning node to trigger wallet rescan") self.stop_node(2) - self.start_node(2, self.options.tmpdir, ["-prune=550"]) + self.nodes[2] = self.start_node(2, self.options.tmpdir, ["-prune=550"]) self.log.info("Success") # check that wallet loads loads successfully when restarting a pruned node after IBD. @@ -325,7 +325,7 @@ class PruneTest(BitcoinTestFramework): nds = [self.nodes[0], self.nodes[5]] sync_blocks(nds, wait=5, timeout=300) self.stop_node(5) #stop and start to trigger rescan - self.start_node(5, self.options.tmpdir, ["-prune=550"]) + self.nodes[5] = self.start_node(5, self.options.tmpdir, ["-prune=550"]) self.log.info("Success") def run_test(self): |