From bcb71234065e525e9f3cccceaaab320f2ec3741b Mon Sep 17 00:00:00 2001 From: josibake Date: Mon, 12 Dec 2022 17:58:15 +0100 Subject: [PATCH] test: add add_wallet_options to TestShell without this, testShell runs with -disablewallet --- test/functional/test_framework/test_shell.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/functional/test_framework/test_shell.py b/test/functional/test_framework/test_shell.py index 26df128f1fe..2d8935dfe6d 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