diff options
| author | MarcoFalke <[email protected]> | 2018-09-09 13:32:37 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-09-10 17:53:21 -0400 |
| commit | fac95398366f644911b58f1605e6bc37fb76782d (patch) | |
| tree | 098e7ed7b1099267673386bd3cca40b31db77741 /test/functional/mempool_packages.py | |
| parent | qa: Premine to deterministic address with -disablewallet (diff) | |
| download | discoin-fac95398366f644911b58f1605e6bc37fb76782d.tar.xz discoin-fac95398366f644911b58f1605e6bc37fb76782d.zip | |
qa: Run all tests even if wallet is not compiled
Diffstat (limited to 'test/functional/mempool_packages.py')
| -rwxr-xr-x | test/functional/mempool_packages.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/mempool_packages.py b/test/functional/mempool_packages.py index e2ac76aac..9336547a6 100755 --- a/test/functional/mempool_packages.py +++ b/test/functional/mempool_packages.py @@ -18,6 +18,9 @@ class MempoolPackagesTest(BitcoinTestFramework): self.num_nodes = 2 self.extra_args = [["-maxorphantx=1000"], ["-maxorphantx=1000", "-limitancestorcount=5"]] + def skip_test_if_missing_module(self): + self.skip_if_no_wallet() + # Build a transaction that spends parent_txid:vout # Return amount sent def chain_transaction(self, node, parent_txid, vout, value, fee, num_outputs): |