diff options
| author | Ben Woosley <[email protected]> | 2018-02-06 18:47:51 -0500 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2018-02-08 11:02:41 -0500 |
| commit | bb00c95c16f50c5dfab1aa8fbb6c873318a6acc8 (patch) | |
| tree | 690d0a1dda3b3be64c6cb3200df795db58c992b9 /test/functional/mempool_limit.py | |
| parent | Add test for 'mempool min fee not met' rpc error (diff) | |
| download | discoin-bb00c95c16f50c5dfab1aa8fbb6c873318a6acc8.tar.xz discoin-bb00c95c16f50c5dfab1aa8fbb6c873318a6acc8.zip | |
Consistently use FormatStateMessage in RPC error output
This will include the error code and debug output as well as the reason string.
See #11955 for the motivation.
Diffstat (limited to 'test/functional/mempool_limit.py')
| -rwxr-xr-x | test/functional/mempool_limit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mempool_limit.py b/test/functional/mempool_limit.py index 1385271e6..7e01663c9 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].signrawtransaction(txF['hex']) - assert_raises_rpc_error(-26, "66: mempool min fee not met", self.nodes[0].sendrawtransaction, txFS['hex']) + assert_raises_rpc_error(-26, "mempool min fee not met, 166 < 411 (code 66)", self.nodes[0].sendrawtransaction, txFS['hex']) if __name__ == '__main__': MempoolLimitTest().main() |