[rpc-tests] fundrawtransaction: Update fee after minRelayTxFee increase

Zcash: Added floor, since our minRelayTxFee is actually lower.
This commit is contained in:
MarcoFalke 2015-10-14 14:27:03 +02:00 committed by Jack Grigg
parent 480f1bf43e
commit 6aa4f19e87
1 changed files with 9 additions and 1 deletions

View File

@ -32,7 +32,15 @@ class RawTransactionsTest(BitcoinTestFramework):
def run_test(self):
print("Mining blocks...")
feeTolerance = Decimal("0.00000002") #if the fee's positive delta is higher than this value tests will fail, neg. delta always fail the tests
min_relay_tx_fee = self.nodes[0].getnetworkinfo()['relayfee']
# if the fee's positive delta is higher than this value tests will fail,
# neg. delta always fail the tests.
# The size of the signature of every input may be at most 2 bytes larger
# than a minimum sized signature.
# = 2 bytes * minRelayTxFeePerByte
feeTolerance = max(2 * min_relay_tx_fee/1000, Decimal("0.00000001"))
self.nodes[2].generate(1)
self.sync_all()