diff options
| author | MarcoFalke <[email protected]> | 2020-04-06 21:27:53 +0800 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-04-06 21:27:56 +0800 |
| commit | 299544f9c5375810f3b4f70e68d2340fe689108a (patch) | |
| tree | 7baac764c19f7523669cbf50cd425c845478b904 | |
| parent | Merge #18506: net: Hardcoded seeds update for 0.20 (diff) | |
| parent | test: skip backwards compat tests if not compiled with wallet (diff) | |
| download | discoin-299544f9c5375810f3b4f70e68d2340fe689108a.tar.xz discoin-299544f9c5375810f3b4f70e68d2340fe689108a.zip | |
Merge #18534: test: skip backwards compat tests if not compiled with wallet
c0c43ae1471347ea93614e9a25989f13b021f8a8 test: skip backwards compat tests if not compiled with wallet (fanquake)
Pull request description:
Top commit has no ACKs.
Tree-SHA512: d9975a1490e69134408b6b724cea26a6c1397d43f59850283b9e338ae38e00fefbcd868fb141e0a4bb55f02076690a99331f29cfa2d0fa66c165032b24a94081
| -rwxr-xr-x | test/functional/feature_backwards_compatibility.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/feature_backwards_compatibility.py b/test/functional/feature_backwards_compatibility.py index 0db74432e..adf66243b 100755 --- a/test/functional/feature_backwards_compatibility.py +++ b/test/functional/feature_backwards_compatibility.py @@ -40,6 +40,9 @@ class BackwardsCompatibilityTest(BitcoinTestFramework): ["-nowallet", "-walletrbf=1", "-addresstype=bech32"] # v0.17.1 ] + def skip_test_if_missing_module(self): + self.skip_if_no_wallet() + def setup_nodes(self): if os.getenv("TEST_PREVIOUS_RELEASES") == "false": raise SkipTest("backwards compatibility tests") |