mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-13 11:40:42 +02:00
test: passing a value below 5 MB to -maxmempool should throw an error
This commit is contained in:
parent
5174a139c9
commit
216c9b00ec
@ -87,6 +87,10 @@ class MempoolLimitTest(BitcoinTestFramework):
|
|||||||
self.log.info('Create a mempool tx that will not pass mempoolminfee')
|
self.log.info('Create a mempool tx that will not pass mempoolminfee')
|
||||||
assert_raises_rpc_error(-26, "mempool min fee not met", miniwallet.send_self_transfer, from_node=node, fee_rate=relayfee, mempool_valid=False)
|
assert_raises_rpc_error(-26, "mempool min fee not met", miniwallet.send_self_transfer, from_node=node, fee_rate=relayfee, mempool_valid=False)
|
||||||
|
|
||||||
|
self.log.info('Test passing a value below the minimum (5 MB) to -maxmempool throws an error')
|
||||||
|
self.stop_node(0)
|
||||||
|
self.nodes[0].assert_start_raises_init_error(["-maxmempool=4"], "Error: -maxmempool must be at least 5 MB")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
MempoolLimitTest().main()
|
MempoolLimitTest().main()
|
||||||
|
Loading…
Reference in New Issue
Block a user