tests: mempool_packages.py (#2433)

* Bump fee to 1.0000 from 0.0001 to fix insufficient priority error
This commit is contained in:
xanimo 2021-08-01 01:36:55 -07:00 committed by GitHub
parent 7abb81b2ea
commit 290faedcc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):