Skip to content

Commit df0e222

Browse files
committed
Add RPC test for abandoned and conflicted transactions.
1 parent 01e06d1 commit df0e222

File tree

2 files changed

+154
-0
lines changed

2 files changed

+154
-0
lines changed

qa/pull-tester/rpc-tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
'prioritise_transaction.py',
106106
'invalidblockrequest.py',
107107
'invalidtxrequest.py',
108+
'abandonconflict.py',
108109
]
109110
testScriptsExt = [
110111
'bip65-cltv.py',

qa/rpc-tests/abandonconflict.py

Lines changed: 153 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
#!/usr/bin/env python2
2+
# Copyright (c) 2014-2015 The Bitcoin Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
5+
6+
7+
from test_framework.test_framework import BitcoinTestFramework
8+
from test_framework.util import *
9+
try:
10+
import urllib.parse as urlparse
11+
except ImportError:
12+
import urlparse
13+
14+
class AbandonConflictTest(BitcoinTestFramework):
15+
16+
def setup_network(self):
17+
self.nodes = []
18+
self.nodes.append(start_node(0, self.options.tmpdir, ["-debug","-logtimemicros","-minrelaytxfee=0.00001"]))
19+
self.nodes.append(start_node(1, self.options.tmpdir, ["-debug","-logtimemicros"]))
20+
connect_nodes(self.nodes[0], 1)
21+
22+
def run_test(self):
23+
self.nodes[1].generate(100)
24+
sync_blocks(self.nodes)
25+
balance = self.nodes[0].getbalance()
26+
txA = self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), Decimal("10"))
27+
txB = self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), Decimal("10"))
28+
txC = self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), Decimal("10"))
29+
sync_mempools(self.nodes)
30+
self.nodes[1].generate(1)
31+
32+
sync_blocks(self.nodes)
33+
newbalance = self.nodes[0].getbalance()
34+
assert(balance - newbalance < Decimal("0.001")) #no more than fees lost
35+
balance = newbalance
36+
37+
url = urlparse.urlparse(self.nodes[1].url)
38+
self.nodes[0].disconnectnode(url.hostname+":"+str(p2p_port(1)))
39+
40+
# Identify the 10btc outputs
41+
nA = next(i for i, vout in enumerate(self.nodes[0].getrawtransaction(txA, 1)["vout"]) if vout["value"] == Decimal("10"))
42+
nB = next(i for i, vout in enumerate(self.nodes[0].getrawtransaction(txB, 1)["vout"]) if vout["value"] == Decimal("10"))
43+
nC = next(i for i, vout in enumerate(self.nodes[0].getrawtransaction(txC, 1)["vout"]) if vout["value"] == Decimal("10"))
44+
45+
inputs =[]
46+
# spend 10btc outputs from txA and txB
47+
inputs.append({"txid":txA, "vout":nA})
48+
inputs.append({"txid":txB, "vout":nB})
49+
outputs = {}
50+
51+
outputs[self.nodes[0].getnewaddress()] = Decimal("14.99998")
52+
outputs[self.nodes[1].getnewaddress()] = Decimal("5")
53+
signed = self.nodes[0].signrawtransaction(self.nodes[0].createrawtransaction(inputs, outputs))
54+
txAB1 = self.nodes[0].sendrawtransaction(signed["hex"])
55+
56+
# Identify the 14.99998btc output
57+
nAB = next(i for i, vout in enumerate(self.nodes[0].getrawtransaction(txAB1, 1)["vout"]) if vout["value"] == Decimal("14.99998"))
58+
59+
#Create a child tx spending AB1 and C
60+
inputs = []
61+
inputs.append({"txid":txAB1, "vout":nAB})
62+
inputs.append({"txid":txC, "vout":nC})
63+
outputs = {}
64+
outputs[self.nodes[0].getnewaddress()] = Decimal("24.9996")
65+
signed2 = self.nodes[0].signrawtransaction(self.nodes[0].createrawtransaction(inputs, outputs))
66+
txABC2 = self.nodes[0].sendrawtransaction(signed2["hex"])
67+
68+
# In mempool txs from self should increase balance from change
69+
newbalance = self.nodes[0].getbalance()
70+
assert(newbalance == balance - Decimal("30") + Decimal("24.9996"))
71+
balance = newbalance
72+
73+
# Restart the node with a higher min relay fee so the parent tx is no longer in mempool
74+
# TODO: redo with eviction
75+
# Note had to make sure tx did not have AllowFree priority
76+
stop_node(self.nodes[0],0)
77+
self.nodes[0]=start_node(0, self.options.tmpdir, ["-debug","-logtimemicros","-minrelaytxfee=0.0001"])
78+
79+
# Verify txs no longer in mempool
80+
assert(len(self.nodes[0].getrawmempool()) == 0)
81+
82+
# Not in mempool txs from self should only reduce balance
83+
# inputs are still spent, but change not received
84+
newbalance = self.nodes[0].getbalance()
85+
assert(newbalance == balance - Decimal("24.9996"))
86+
balance = newbalance
87+
88+
# Abandon original transaction and verify inputs are available again
89+
# including that the child tx was also abandoned
90+
self.nodes[0].abandontransaction(txAB1)
91+
newbalance = self.nodes[0].getbalance()
92+
assert(newbalance == balance + Decimal("30"))
93+
balance = newbalance
94+
95+
# Verify that even with a low min relay fee, the tx is not reaccepted from wallet on startup once abandoned
96+
stop_node(self.nodes[0],0)
97+
self.nodes[0]=start_node(0, self.options.tmpdir, ["-debug","-logtimemicros","-minrelaytxfee=0.00001"])
98+
assert(len(self.nodes[0].getrawmempool()) == 0)
99+
assert(self.nodes[0].getbalance() == balance)
100+
101+
# But if its received again then it is unabandoned
102+
# And since now in mempool, the change is available
103+
# But its child tx remains abandoned
104+
self.nodes[0].sendrawtransaction(signed["hex"])
105+
newbalance = self.nodes[0].getbalance()
106+
assert(newbalance == balance - Decimal("20") + Decimal("14.99998"))
107+
balance = newbalance
108+
109+
# Send child tx again so its unabandoned
110+
self.nodes[0].sendrawtransaction(signed2["hex"])
111+
newbalance = self.nodes[0].getbalance()
112+
assert(newbalance == balance - Decimal("10") - Decimal("14.99998") + Decimal("24.9996"))
113+
balance = newbalance
114+
115+
# Remove using high relay fee again
116+
stop_node(self.nodes[0],0)
117+
self.nodes[0]=start_node(0, self.options.tmpdir, ["-debug","-logtimemicros","-minrelaytxfee=0.0001"])
118+
assert(len(self.nodes[0].getrawmempool()) == 0)
119+
newbalance = self.nodes[0].getbalance()
120+
assert(newbalance == balance - Decimal("24.9996"))
121+
balance = newbalance
122+
123+
# Create a double spend of AB1 by spending again from only A's 10 output
124+
# Mine double spend from node 1
125+
inputs =[]
126+
inputs.append({"txid":txA, "vout":nA})
127+
outputs = {}
128+
outputs[self.nodes[1].getnewaddress()] = Decimal("9.9999")
129+
tx = self.nodes[0].createrawtransaction(inputs, outputs)
130+
signed = self.nodes[0].signrawtransaction(tx)
131+
self.nodes[1].sendrawtransaction(signed["hex"])
132+
self.nodes[1].generate(1)
133+
134+
connect_nodes(self.nodes[0], 1)
135+
sync_blocks(self.nodes)
136+
137+
# Verify that B and C's 10 BTC outputs are available for spending again because AB1 is now conflicted
138+
newbalance = self.nodes[0].getbalance()
139+
assert(newbalance == balance + Decimal("20"))
140+
balance = newbalance
141+
142+
# There is currently a minor bug around this and so this test doesn't work. See Issue #7315
143+
# Invalidate the block with the double spend and B's 10 BTC output should no longer be available
144+
# Don't think C's should either
145+
self.nodes[0].invalidateblock(self.nodes[0].getbestblockhash())
146+
newbalance = self.nodes[0].getbalance()
147+
#assert(newbalance == balance - Decimal("10"))
148+
print "If balance has not declined after invalidateblock then out of mempool wallet tx which is no longer"
149+
print "conflicted has not resumed causing its inputs to be seen as spent. See Issue #7315"
150+
print balance , " -> " , newbalance , " ?"
151+
152+
if __name__ == '__main__':
153+
AbandonConflictTest().main()

0 commit comments

Comments
 (0)