diff options
| author | xanimo <[email protected]> | 2021-08-01 01:36:55 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-01 09:36:55 +0100 |
| commit | 290faedcc34d027620ffb0c6f94333b89ffec2b3 (patch) | |
| tree | 0166c3ad4ba5b530580bd92f327d679891555904 /qa | |
| parent | Merge pull request #2368 from michilumin/1.14.4-fees (diff) | |
| download | discoin-290faedcc34d027620ffb0c6f94333b89ffec2b3.tar.xz discoin-290faedcc34d027620ffb0c6f94333b89ffec2b3.zip | |
tests: mempool_packages.py (#2433)
* Bump fee to 1.0000 from 0.0001 to fix insufficient priority error
Diffstat (limited to 'qa')
| -rwxr-xr-x | qa/rpc-tests/mempool_packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/mempool_packages.py b/qa/rpc-tests/mempool_packages.py index 99e01534d..35cbb3fdd 100755 --- a/qa/rpc-tests/mempool_packages.py +++ b/qa/rpc-tests/mempool_packages.py @@ -49,7 +49,7 @@ class MempoolPackagesTest(BitcoinTestFramework): vout = utxo[0]['vout'] value = utxo[0]['amount'] - fee = Decimal("0.0001") + fee = Decimal("1.0000") # MAX_ANCESTORS transactions off a confirmed tx should be fine chain = [] for i in range(MAX_ANCESTORS): |