diff options
| author | MarcoFalke <[email protected]> | 2018-09-09 13:32:37 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-10-24 22:02:36 -0400 |
| commit | f7adb32e383bbbdb473eb470e4a6872b582cac80 (patch) | |
| tree | 4d59469a75a5e7b2fd91412c356a7c1501222a77 /test/functional/mempool_accept.py | |
| parent | qa: Premine to deterministic address with -disablewallet (diff) | |
| download | discoin-f7adb32e383bbbdb473eb470e4a6872b582cac80.tar.xz discoin-f7adb32e383bbbdb473eb470e4a6872b582cac80.zip | |
qa: Run all tests even if wallet is not compiled
Github-Pull: #14180
Rebased-From: fac95398366f644911b58f1605e6bc37fb76782d
Diffstat (limited to 'test/functional/mempool_accept.py')
| -rwxr-xr-x | test/functional/mempool_accept.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/mempool_accept.py b/test/functional/mempool_accept.py index 44426a0ff..8847777ba 100755 --- a/test/functional/mempool_accept.py +++ b/test/functional/mempool_accept.py @@ -40,6 +40,9 @@ class MempoolAcceptanceTest(BitcoinTestFramework): '-acceptnonstdtxn=0', # Try to mimic main-net ]] * self.num_nodes + def skip_test_if_missing_module(self): + self.skip_if_no_wallet() + def check_mempool_result(self, result_expected, *args, **kwargs): """Wrapper to check result of testmempoolaccept on node_0's mempool""" result_test = self.nodes[0].testmempoolaccept(*args, **kwargs) |