Skip to content

Commit 678889e

Browse files
author
MarcoFalke
committed
Merge bitcoin/bitcoin#26689: test: add add_wallet_options to TestShell
bcb7123 test: add add_wallet_options to TestShell (josibake) Pull request description: following bitcoin/bitcoin@555519d, `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 bcb7123 Tree-SHA512: db554a8b3c8ff5bd10cab9592b316035a92f86a0a0ae8ff914de9687bbbb6fc2235bdf82c4cd40e4071782f8b6edf91aad372e82ed3b826c9d8ae39dbe3dbf57
2 parents daf881d + bcb7123 commit 678889e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/functional/test_framework/test_shell.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ class TestShell:
1616
start a single TestShell at a time."""
1717

1818
class __TestShell(BitcoinTestFramework):
19+
def add_options(self, parser):
20+
self.add_wallet_options(parser)
21+
1922
def set_test_params(self):
2023
pass
2124

0 commit comments

Comments
 (0)