aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorxanimo <[email protected]>2021-08-01 01:36:55 -0700
committerGitHub <[email protected]>2021-08-01 09:36:55 +0100
commit290faedcc34d027620ffb0c6f94333b89ffec2b3 (patch)
tree0166c3ad4ba5b530580bd92f327d679891555904 /qa
parentMerge pull request #2368 from michilumin/1.14.4-fees (diff)
downloaddiscoin-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-xqa/rpc-tests/mempool_packages.py2
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):