aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2022-12-14 09:15:58 +0100
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2022-12-14 09:16:02 +0100
commit678889e6c6231cf461de59eefe6fb8eb07468848 (patch)
tree5d266e1ef8ee7c867a480fedcff0db140dccd222 /test
parentdaf881de9db195f0ce5b8067edba2eef7a962abf (diff)
parentbcb71234065e525e9f3cccceaaab320f2ec3741b (diff)
downloadbitcoin-678889e6c6231cf461de59eefe6fb8eb07468848.tar.xz
Merge bitcoin/bitcoin#26689: test: add add_wallet_options to TestShell
bcb71234065e525e9f3cccceaaab320f2ec3741b test: add add_wallet_options to TestShell (josibake) Pull request description: following https://github.com/bitcoin/bitcoin/pull/26480/commits/555519d082fbe5e047595f06d7f301e441bb7149, `TestShell` now always runs with `-disablewallet`. simple fix is to add `add_wallet_options` to `add_options`; looks like testshell was overlooked when adding in the `add_wallet_options` call to the functional tests in #26480 ACKs for top commit: amitiuttarwar: ACK bcb71234065e525e9f3cccceaaab320f2ec3741b Tree-SHA512: db554a8b3c8ff5bd10cab9592b316035a92f86a0a0ae8ff914de9687bbbb6fc2235bdf82c4cd40e4071782f8b6edf91aad372e82ed3b826c9d8ae39dbe3dbf57
Diffstat (limited to 'test')
-rw-r--r--test/functional/test_framework/test_shell.py3
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