diff options
author | MacroFake <falke.marco@gmail.com> | 2022-06-27 08:19:11 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-06-27 08:19:14 +0200 |
commit | f52d07436310a90ddc855888772614a09259abb6 (patch) | |
tree | b8da007d88ab50e793fc9d602535069eea05aa49 /test/functional/feature_rbf.py | |
parent | c1acd3498492f5fde94e4e597074cede4ca36516 (diff) | |
parent | fafee78188c3de5f6245ec769429822ca4b98c63 (diff) |
Merge bitcoin/bitcoin#25439: rpc: Return incrementalrelayfee in getmempoolinfo
fafee78188c3de5f6245ec769429822ca4b98c63 rpc: Return incrementalrelayfee in getmempoolinfo (MacroFake)
Pull request description:
Seems odd to return other policy info, but not the incremental relay fee
ACKs for top commit:
1440000bytes:
ACK https://github.com/bitcoin/bitcoin/pull/25439/commits/fafee78188c3de5f6245ec769429822ca4b98c63
w0xlt:
Code Review ACK https://github.com/bitcoin/bitcoin/pull/25439/commits/fafee78188c3de5f6245ec769429822ca4b98c63
jarolrod:
tACK fafee78188c3de5f6245ec769429822ca4b98c63
Tree-SHA512: faad0af6c039b8257acbeac913bc5dcdb2ea2db304c95e52601536c8de60eb1186e9fbb4a64a68adf476605f18022aeda16a5644a0d7912592b0977e4c029638
Diffstat (limited to 'test/functional/feature_rbf.py')
-rwxr-xr-x | test/functional/feature_rbf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/feature_rbf.py b/test/functional/feature_rbf.py index 738c6ea4af..712897e5e7 100755 --- a/test/functional/feature_rbf.py +++ b/test/functional/feature_rbf.py @@ -711,6 +711,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()) |