aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2018-02-22 13:30:47 -0800
committerBen Woosley <ben.woosley@gmail.com>2018-02-22 13:30:50 -0800
commit55f89da1a5048cf275c37bceef664e7c04831a35 (patch)
tree4564212425977f58d20441436914330cab039dc8 /test
parentaae64a21ba25ca86fe2bbb581681dc20d613fb44 (diff)
downloadbitcoin-55f89da1a5048cf275c37bceef664e7c04831a35.tar.xz
Don't test against the mempool min fee information in mempool_limit.py
Because the right-hand side of this comparison can be influenced externally, e.g. via the -maxmempool argument, the existing mempool state, host memory usage, etc.
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/mempool_limit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mempool_limit.py b/test/functional/mempool_limit.py
index 47f7efd3e7..5382fe439e 100755
--- a/test/functional/mempool_limit.py
+++ b/test/functional/mempool_limit.py
@@ -58,7 +58,7 @@ class MempoolLimitTest(BitcoinTestFramework):
# specifically fund this tx with a fee < mempoolminfee, >= than minrelaytxfee
txF = self.nodes[0].fundrawtransaction(tx, {'feeRate': relayfee})
txFS = self.nodes[0].signrawtransactionwithwallet(txF['hex'])
- assert_raises_rpc_error(-26, "mempool min fee not met, 166 < 411 (code 66)", self.nodes[0].sendrawtransaction, txFS['hex'])
+ assert_raises_rpc_error(-26, "mempool min fee not met", self.nodes[0].sendrawtransaction, txFS['hex'])
if __name__ == '__main__':
MempoolLimitTest().main()