2016-03-19 20:58:06 +01:00
|
|
|
#!/usr/bin/env python3
|
2018-01-02 18:12:05 +01:00
|
|
|
# Copyright (c) 2014-2017 The Bitcoin Core developers
|
2015-11-30 15:42:27 +01:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-18 00:34:40 +01:00
|
|
|
"""Test mempool limiting together/eviction with the wallet."""
|
2015-11-30 15:42:27 +01:00
|
|
|
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
from test_framework.util import *
|
|
|
|
|
|
|
|
class MempoolLimitTest(BitcoinTestFramework):
|
2017-06-10 00:21:21 +02:00
|
|
|
def set_test_params(self):
|
2016-05-14 13:01:31 +02:00
|
|
|
self.setup_clean_chain = True
|
2016-05-15 12:20:15 +02:00
|
|
|
self.num_nodes = 1
|
2017-04-03 15:34:04 +02:00
|
|
|
self.extra_args = [["-maxmempool=5", "-spendzeroconfchange=0"]]
|
2015-11-30 15:42:27 +01:00
|
|
|
|
|
|
|
def run_test(self):
|
2017-04-03 15:34:04 +02:00
|
|
|
txouts = gen_return_txouts()
|
|
|
|
relayfee = self.nodes[0].getnetworkinfo()['relayfee']
|
|
|
|
|
2017-12-24 01:42:34 +01: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 15:42:27 +01:00
|
|
|
txids = []
|
2017-04-03 15:34:04 +02:00
|
|
|
utxos = create_confirmed_utxos(relayfee, self.nodes[0], 91)
|
2015-11-30 15:42:27 +01:00
|
|
|
|
2017-12-24 01:42:34 +01:00
|
|
|
self.log.info('Create a mempool tx that will be evicted')
|
2015-11-30 15:42:27 +01:00
|
|
|
us0 = utxos.pop()
|
|
|
|
inputs = [{ "txid" : us0["txid"], "vout" : us0["vout"]}]
|
2015-12-03 11:02:24 +01:00
|
|
|
outputs = {self.nodes[0].getnewaddress() : 0.0001}
|
2015-11-30 15:42:27 +01:00
|
|
|
tx = self.nodes[0].createrawtransaction(inputs, outputs)
|
2017-04-03 15:34:04 +02:00
|
|
|
self.nodes[0].settxfee(relayfee) # specifically fund this tx with low fee
|
2015-11-30 15:42:27 +01:00
|
|
|
txF = self.nodes[0].fundrawtransaction(tx)
|
2016-01-05 23:47:04 +01:00
|
|
|
self.nodes[0].settxfee(0) # return to automatic fee selection
|
2017-09-06 01:49:18 +02:00
|
|
|
txFS = self.nodes[0].signrawtransactionwithwallet(txF['hex'])
|
2015-11-30 15:42:27 +01:00
|
|
|
txid = self.nodes[0].sendrawtransaction(txFS['hex'])
|
|
|
|
|
|
|
|
relayfee = self.nodes[0].getnetworkinfo()['relayfee']
|
|
|
|
base_fee = relayfee*100
|
2016-12-04 16:16:11 +01:00
|
|
|
for i in range (3):
|
2015-11-30 15:42:27 +01:00
|
|
|
txids.append([])
|
2017-04-03 15:34:04 +02: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 15:42:27 +01:00
|
|
|
|
2017-12-24 01:42:34 +01:00
|
|
|
self.log.info('The tx should be evicted by now')
|
2015-11-30 15:42:27 +01:00
|
|
|
assert(txid not in self.nodes[0].getrawmempool())
|
2015-12-02 18:12:23 +01:00
|
|
|
txdata = self.nodes[0].gettransaction(txid)
|
2015-11-30 15:42:27 +01:00
|
|
|
assert(txdata['confirmations'] == 0) #confirmation should still be 0
|
|
|
|
|
2017-12-24 01:42:34 +01: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-06 03:00:57 +01: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-06 01:49:18 +02:00
|
|
|
txFS = self.nodes[0].signrawtransactionwithwallet(txF['hex'])
|
2018-02-22 22:30:47 +01:00
|
|
|
assert_raises_rpc_error(-26, "mempool min fee not met", self.nodes[0].sendrawtransaction, txFS['hex'])
|
2018-02-06 03:00:57 +01:00
|
|
|
|
2015-11-30 15:42:27 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
MempoolLimitTest().main()
|