aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2021-08-09 23:27:38 +0100
committerRoss Nicoll <[email protected]>2021-08-17 08:50:42 +0100
commitce6e3d8137128e99b2f7f99f79327b8b440df0a2 (patch)
treeefcc20108c599f774d5df680eed7c91e7476b14b /qa
parentMerge pull request #2457 from ReverseControl/1.14.4-suggested-changes-for-2297 (diff)
downloaddiscoin-ce6e3d8137128e99b2f7f99f79327b8b440df0a2.tar.xz
discoin-ce6e3d8137128e99b2f7f99f79327b8b440df0a2.zip
Remove relay-only rounding
Remove rounding of transaction sizes when calculating fee minimums for relaying, to simplify fee logic.
Diffstat (limited to 'qa')
-rw-r--r--qa/rpc-tests/test_framework/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py
index 4e4011b3a..a9723df07 100644
--- a/qa/rpc-tests/test_framework/util.py
+++ b/qa/rpc-tests/test_framework/util.py
@@ -509,7 +509,7 @@ def random_transaction(nodes, amount, min_fee, fee_increment, fee_variants):
def assert_fee_amount(fee, tx_size, fee_per_kB):
"""Assert the fee was in range"""
- target_fee = round_tx_size(tx_size) * fee_per_kB / 1000
+ target_fee = fee_per_kB / 1000
if fee < target_fee:
raise AssertionError("Fee of %s BTC too low! (Should be %s BTC)"%(str(fee), str(target_fee)))
# allow the wallet's estimation to be at most 2 bytes off