aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2015-10-14 14:27:03 +0200
committerMarcoFalke <falke.marco@gmail.com>2015-10-20 10:25:45 +0200
commit0d8b1759d21ac8db02627553d4b9c63d859bb0a5 (patch)
tree735b4e3c306ceff8bfe0d71a0f69a64b033a24fe
parenta1d623da3ea4c73605d27703bc966ed8109d231e (diff)
downloadbitcoin-0d8b1759d21ac8db02627553d4b9c63d859bb0a5.tar.xz
[rpc-tests] fundrawtransaction: Update fee after minRelayTxFee increase
-rwxr-xr-xqa/rpc-tests/fundrawtransaction.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/qa/rpc-tests/fundrawtransaction.py b/qa/rpc-tests/fundrawtransaction.py
index fc29789218..93d13faa06 100755
--- a/qa/rpc-tests/fundrawtransaction.py
+++ b/qa/rpc-tests/fundrawtransaction.py
@@ -28,7 +28,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 = 2 * min_relay_tx_fee/1000
self.nodes[2].generate(1)
self.sync_all()