diff options
author | John Newbery <john@johnnewbery.com> | 2018-10-16 11:21:07 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-11-01 12:53:49 -0400 |
commit | 3fd7e76f6d4b4eae0b36d9b33376274f5387a6f3 (patch) | |
tree | e01790c1fba7dba4f6a3954f3d86f8bb3dbf7ce7 /test/functional/feature_dbcrash.py | |
parent | 08a57d51e90c232421681c9e6fe037ea4b3ed079 (diff) |
[tests] Move deterministic address import to setup_nodes
This requires a small changes to a few tests, but means that
deterministic addresses will always be imported (unless setup_nodes
behaviour is explicitly overridden).
Diffstat (limited to 'test/functional/feature_dbcrash.py')
-rwxr-xr-x | test/functional/feature_dbcrash.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/feature_dbcrash.py b/test/functional/feature_dbcrash.py index ae1eacf2d7..70d67aa53a 100755 --- a/test/functional/feature_dbcrash.py +++ b/test/functional/feature_dbcrash.py @@ -69,6 +69,7 @@ class ChainstateWriteCrashTest(BitcoinTestFramework): def setup_network(self): self.add_nodes(self.num_nodes, extra_args=self.extra_args) self.start_nodes() + self.import_deterministic_coinbase_privkeys() # Leave them unconnected, we'll use submitblock directly in this test def restart_node(self, node_index, expected_tip): |