diff options
author | Andrew Chow <achow101-github@achow101.com> | 2018-02-20 16:09:51 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2018-08-09 11:28:33 -0700 |
commit | c1dde3a949b36ce9c2155777b3fa1372e7ed97d8 (patch) | |
tree | 9cb5be1a30f907106f3968a384eeb905cef660b9 /test/functional/test_framework | |
parent | d7637c5a3f1d62922594cdfb6272e30dacf60ce9 (diff) |
No longer shutdown after encrypting the wallet
Since the database environment is flushed, closed, and reopened during
EncryptWallet, there is no need to shut down the software anymore.
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/test_node.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index 56ea110f16..792d74de51 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -268,14 +268,6 @@ class TestNode(): assert_msg = "bitcoind should have exited with expected error " + expected_msg self._raise_assertion_error(assert_msg) - def node_encrypt_wallet(self, passphrase): - """"Encrypts the wallet. - - This causes bitcoind to shutdown, so this method takes - care of cleaning up resources.""" - self.encryptwallet(passphrase) - self.wait_until_stopped() - def add_p2p_connection(self, p2p_conn, *, wait_for_verack=True, **kwargs): """Add a p2p connection to the node. |