aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/test_node.py
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2021-10-18 16:24:24 -0400
committerAndrew Chow <achow101-github@achow101.com>2022-02-22 14:41:52 -0500
commitc4d76c6faa3adf06f192649e169ca860ce420d30 (patch)
tree70043d589a084e9676fedc156d5aed1b6f5094b9 /test/functional/test_framework/test_node.py
parent8077862c5e8a3ed501f0baabc33536eb16922ceb (diff)
downloadbitcoin-c4d76c6faa3adf06f192649e169ca860ce420d30.tar.xz
tests: Tests for inactive HD chains
test cases are added for inactive HD chains: a basic case, a case where the wallet is encrypted, and a case for the 21605 segfault.
Diffstat (limited to 'test/functional/test_framework/test_node.py')
-rwxr-xr-xtest/functional/test_framework/test_node.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py
index b3279666b2..e3ceb0b118 100755
--- a/test/functional/test_framework/test_node.py
+++ b/test/functional/test_framework/test_node.py
@@ -698,6 +698,9 @@ class RPCOverloadWrapper():
def __getattr__(self, name):
return getattr(self.rpc, name)
+ def createwallet_passthrough(self, *args, **kwargs):
+ return self.__getattr__("createwallet")(*args, **kwargs)
+
def createwallet(self, wallet_name, disable_private_keys=None, blank=None, passphrase='', avoid_reuse=None, descriptors=None, load_on_startup=None, external_signer=None):
if descriptors is None:
descriptors = self.descriptors