aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_rbf.py
diff options
context:
space:
mode:
authorMacroFake <falke.marco@gmail.com>2022-06-21 17:56:07 +0200
committerMacroFake <falke.marco@gmail.com>2022-06-21 18:03:29 +0200
commitfafee78188c3de5f6245ec769429822ca4b98c63 (patch)
tree1758c8cf409f88b1414a1d6ad0ed4fdd04723f3c /test/functional/feature_rbf.py
parentb1788072657d17070fc9adcc2fa1201a8c8acdf8 (diff)
downloadbitcoin-fafee78188c3de5f6245ec769429822ca4b98c63.tar.xz
rpc: Return incrementalrelayfee in getmempoolinfo
Diffstat (limited to 'test/functional/feature_rbf.py')
-rwxr-xr-xtest/functional/feature_rbf.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/feature_rbf.py b/test/functional/feature_rbf.py
index 4c1e86e93d..b3b6328dbb 100755
--- a/test/functional/feature_rbf.py
+++ b/test/functional/feature_rbf.py
@@ -712,6 +712,7 @@ class ReplaceByFeeTest(BitcoinTestFramework):
# Higher fee, higher feerate, different txid, but the replacement does not provide a relay
# fee conforming to node's `incrementalrelayfee` policy of 1000 sat per KB.
+ assert_equal(self.nodes[0].getmempoolinfo()["incrementalrelayfee"], Decimal("0.00001"))
tx.vout[0].nValue -= 1
assert_raises_rpc_error(-26, "insufficient fee", self.nodes[0].sendrawtransaction, tx.serialize().hex())