2016-03-19 16:58:06 -03:00
|
|
|
#!/usr/bin/env python3
|
2018-07-26 18:36:45 -04:00
|
|
|
# Copyright (c) 2014-2018 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
|
|
|
|
|
2015-11-30 11:42:27 -03:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2018-07-06 18:10:35 -04:00
|
|
|
from test_framework.util import assert_equal, assert_greater_than, assert_raises_rpc_error, create_confirmed_utxos, create_lots_of_big_transactions, gen_return_txouts
|
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
|
2017-04-03 10:34:04 -03:00
|
|
|
self.extra_args = [["-maxmempool=5", "-spendzeroconfchange=0"]]
|
2015-11-30 11:42:27 -03:00
|
|
|
|
2018-09-09 14:32:37 -03:00
|
|
|
def skip_test_if_missing_module(self):
|
|
|
|
self.skip_if_no_wallet()
|
|
|
|
|
2015-11-30 11:42:27 -03:00
|
|
|
def run_test(self):
|
2017-04-03 10:34:04 -03:00
|
|
|
txouts = gen_return_txouts()
|
|
|
|
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'))
|
|
|
|
|
2015-11-30 11:42:27 -03:00
|
|
|
txids = []
|
2017-04-03 10:34:04 -03:00
|
|
|
utxos = create_confirmed_utxos(relayfee, self.nodes[0], 91)
|
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')
|
2015-11-30 11:42:27 -03:00
|
|
|
us0 = utxos.pop()
|
|
|
|
inputs = [{ "txid" : us0["txid"], "vout" : us0["vout"]}]
|
2015-12-03 07:02:24 -03:00
|
|
|
outputs = {self.nodes[0].getnewaddress() : 0.0001}
|
2015-11-30 11:42:27 -03:00
|
|
|
tx = self.nodes[0].createrawtransaction(inputs, outputs)
|
2017-04-03 10:34:04 -03:00
|
|
|
self.nodes[0].settxfee(relayfee) # specifically fund this tx with low fee
|
2015-11-30 11:42:27 -03:00
|
|
|
txF = self.nodes[0].fundrawtransaction(tx)
|
2016-01-05 19:47:04 -03:00
|
|
|
self.nodes[0].settxfee(0) # return to automatic fee selection
|
2017-09-05 20:49:18 -03:00
|
|
|
txFS = self.nodes[0].signrawtransactionwithwallet(txF['hex'])
|
2015-11-30 11:42:27 -03:00
|
|
|
txid = self.nodes[0].sendrawtransaction(txFS['hex'])
|
|
|
|
|
|
|
|
relayfee = self.nodes[0].getnetworkinfo()['relayfee']
|
|
|
|
base_fee = relayfee*100
|
2016-12-04 12:16:11 -03:00
|
|
|
for i in range (3):
|
2015-11-30 11:42:27 -03:00
|
|
|
txids.append([])
|
2017-04-03 10:34:04 -03:00
|
|
|
txids[i] = create_lots_of_big_transactions(self.nodes[0], txouts, utxos[30*i:30*i+30], 30, (i+1)*base_fee)
|
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')
|
2015-11-30 11:42:27 -03:00
|
|
|
assert(txid not in self.nodes[0].getrawmempool())
|
2015-12-02 14:12:23 -03:00
|
|
|
txdata = self.nodes[0].gettransaction(txid)
|
2015-11-30 11:42:27 -03:00
|
|
|
assert(txdata['confirmations'] == 0) #confirmation should still be 0
|
|
|
|
|
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'))
|
|
|
|
|
2018-02-05 23:00:57 -03:00
|
|
|
self.log.info('Create a mempool tx that will not pass mempoolminfee')
|
|
|
|
us0 = utxos.pop()
|
|
|
|
inputs = [{ "txid" : us0["txid"], "vout" : us0["vout"]}]
|
|
|
|
outputs = {self.nodes[0].getnewaddress() : 0.0001}
|
|
|
|
tx = self.nodes[0].createrawtransaction(inputs, outputs)
|
|
|
|
# specifically fund this tx with a fee < mempoolminfee, >= than minrelaytxfee
|
|
|
|
txF = self.nodes[0].fundrawtransaction(tx, {'feeRate': relayfee})
|
2017-09-05 20:49:18 -03:00
|
|
|
txFS = self.nodes[0].signrawtransactionwithwallet(txF['hex'])
|
2018-02-22 18:30:47 -03:00
|
|
|
assert_raises_rpc_error(-26, "mempool min fee not met", self.nodes[0].sendrawtransaction, txFS['hex'])
|
2018-02-05 23:00:57 -03:00
|
|
|
|
2015-11-30 11:42:27 -03:00
|
|
|
if __name__ == '__main__':
|
|
|
|
MempoolLimitTest().main()
|