diff options
author | josibake <josibake@protonmail.com> | 2022-12-12 17:58:15 +0100 |
---|---|---|
committer | josibake <josibake@protonmail.com> | 2022-12-12 17:58:15 +0100 |
commit | bcb71234065e525e9f3cccceaaab320f2ec3741b (patch) | |
tree | 3b58193fb01342d5575b52e9a110f8c95577af69 | |
parent | 6061eb6564105ad54703a7cf3282590d0e1a7f28 (diff) |
test: add add_wallet_options to TestShell
without this, testShell runs with -disablewallet
-rw-r--r-- | test/functional/test_framework/test_shell.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/test_framework/test_shell.py b/test/functional/test_framework/test_shell.py index 26df128f1f..2d8935dfe6 100644 --- a/test/functional/test_framework/test_shell.py +++ b/test/functional/test_framework/test_shell.py @@ -16,6 +16,9 @@ class TestShell: start a single TestShell at a time.""" class __TestShell(BitcoinTestFramework): + def add_options(self, parser): + self.add_wallet_options(parser) + def set_test_params(self): pass |