2016-03-19 16:58:06 -03:00
|
|
|
#!/usr/bin/env python3
|
2019-02-20 22:03:13 -03:00
|
|
|
# Copyright (c) 2014-2019 The Bitcoin Core developers
|
2015-11-30 11:42:27 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-17 20:34:40 -03:00
|
|
|
"""Test mempool limiting together/eviction with the wallet."""
|
2015-11-30 11:42:27 -03:00
|
|
|
|
2018-07-06 18:10:35 -04:00
|
|
|
from decimal import Decimal
|
|
|
|
|
2021-09-10 08:37:58 -03:00
|
|
|
from test_framework.blocktools import COINBASE_MATURITY
|
2015-11-30 11:42:27 -03:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2021-09-10 08:37:58 -03:00
|
|
|
from test_framework.util import assert_equal, assert_greater_than, assert_raises_rpc_error, gen_return_txouts
|
|
|
|
from test_framework.wallet import MiniWallet
|
|
|
|
|
2015-11-30 11:42:27 -03:00
|
|
|
|
|
|
|
class MempoolLimitTest(BitcoinTestFramework):
|
2017-06-09 18:21:21 -04:00
|
|
|
def set_test_params(self):
|
2016-05-14 08:01:31 -03:00
|
|
|
self.setup_clean_chain = True
|
2016-05-15 06:20:15 -04:00
|
|
|
self.num_nodes = 1
|
2019-04-24 17:55:58 -04:00
|
|
|
self.extra_args = [[
|
|
|
|
"-acceptnonstdtxn=1",
|
|
|
|
"-maxmempool=5",
|
|
|
|
"-spendzeroconfchange=0",
|
|
|
|
]]
|
2019-12-06 11:37:49 -03:00
|
|
|
self.supports_cli = False
|
2015-11-30 11:42:27 -03:00
|
|
|
|
2021-09-10 08:37:58 -03:00
|
|
|
def send_large_txs(self, miniwallet, txouts, fee_rate, tx_batch_size):
|
|
|
|
for _ in range(tx_batch_size):
|
|
|
|
tx = miniwallet.create_self_transfer(from_node=self.nodes[0], fee_rate=fee_rate)['tx']
|
|
|
|
for txout in txouts:
|
|
|
|
tx.vout.append(txout)
|
|
|
|
miniwallet.sendrawtransaction(from_node=self.nodes[0], tx_hex=tx.serialize().hex())
|
2018-09-09 14:32:37 -03:00
|
|
|
|
2015-11-30 11:42:27 -03:00
|
|
|
def run_test(self):
|
2017-04-03 10:34:04 -03:00
|
|
|
txouts = gen_return_txouts()
|
2021-09-10 08:37:58 -03:00
|
|
|
miniwallet = MiniWallet(self.nodes[0])
|
2017-04-03 10:34:04 -03:00
|
|
|
relayfee = self.nodes[0].getnetworkinfo()['relayfee']
|
|
|
|
|
2017-12-23 21:42:34 -03:00
|
|
|
self.log.info('Check that mempoolminfee is minrelytxfee')
|
|
|
|
assert_equal(self.nodes[0].getmempoolinfo()['minrelaytxfee'], Decimal('0.00001000'))
|
|
|
|
assert_equal(self.nodes[0].getmempoolinfo()['mempoolminfee'], Decimal('0.00001000'))
|
|
|
|
|
2021-09-10 08:37:58 -03:00
|
|
|
tx_batch_size = 25
|
|
|
|
num_of_batches = 3
|
|
|
|
# Generate UTXOs to flood the mempool
|
|
|
|
# 1 to create a tx initially that will be evicted from the mempool later
|
|
|
|
# 3 batches of multiple transactions with a fee rate much higher than the previous UTXO
|
|
|
|
# And 1 more to verify that this tx does not get added to the mempool with a fee rate less than the mempoolminfee
|
|
|
|
self.generate(miniwallet, 1 + (num_of_batches * tx_batch_size) + 1)
|
|
|
|
|
|
|
|
# Mine 99 blocks so that the UTXOs are allowed to be spent
|
|
|
|
self.generate(self.nodes[0], COINBASE_MATURITY - 1)
|
2015-11-30 11:42:27 -03:00
|
|
|
|
2017-12-23 21:42:34 -03:00
|
|
|
self.log.info('Create a mempool tx that will be evicted')
|
2021-09-10 08:37:58 -03:00
|
|
|
tx_to_be_evicted_id = miniwallet.send_self_transfer(from_node=self.nodes[0], fee_rate=relayfee)["txid"]
|
2015-11-30 11:42:27 -03:00
|
|
|
|
2021-09-10 08:37:58 -03:00
|
|
|
# Increase the tx fee rate massively to give the subsequent transactions a higher priority in the mempool
|
|
|
|
base_fee = relayfee * 1000
|
|
|
|
|
|
|
|
self.log.info("Fill up the mempool with txs with higher fee rate")
|
|
|
|
for batch_of_txid in range(num_of_batches):
|
|
|
|
fee_rate=(batch_of_txid + 1) * base_fee
|
|
|
|
self.send_large_txs(miniwallet, txouts, fee_rate, tx_batch_size)
|
2015-11-30 11:42:27 -03:00
|
|
|
|
2017-12-23 21:42:34 -03:00
|
|
|
self.log.info('The tx should be evicted by now')
|
2021-09-10 08:37:58 -03:00
|
|
|
# The number of transactions created should be greater than the ones present in the mempool
|
|
|
|
assert_greater_than(tx_batch_size * num_of_batches, len(self.nodes[0].getrawmempool()))
|
|
|
|
# Initial tx created should not be present in the mempool anymore as it had a lower fee rate
|
|
|
|
assert tx_to_be_evicted_id not in self.nodes[0].getrawmempool()
|
2015-11-30 11:42:27 -03:00
|
|
|
|
2017-12-23 21:42:34 -03:00
|
|
|
self.log.info('Check that mempoolminfee is larger than minrelytxfee')
|
|
|
|
assert_equal(self.nodes[0].getmempoolinfo()['minrelaytxfee'], Decimal('0.00001000'))
|
|
|
|
assert_greater_than(self.nodes[0].getmempoolinfo()['mempoolminfee'], Decimal('0.00001000'))
|
|
|
|
|
2021-09-10 08:37:58 -03:00
|
|
|
# Deliberately try to create a tx with a fee less than the minimum mempool fee to assert that it does not get added to the mempool
|
2018-02-05 23:00:57 -03:00
|
|
|
self.log.info('Create a mempool tx that will not pass mempoolminfee')
|
2021-09-10 08:37:58 -03:00
|
|
|
assert_raises_rpc_error(-26, "mempool min fee not met", miniwallet.send_self_transfer, from_node=self.nodes[0], fee_rate=relayfee, mempool_valid=False)
|
|
|
|
|
2018-02-05 23:00:57 -03:00
|
|
|
|
2015-11-30 11:42:27 -03:00
|
|
|
if __name__ == '__main__':
|
|
|
|
MempoolLimitTest().main()
|