Remove accidental stray semicolon
[bitcoinplatinum.git] / test / functional / txn_clone.py
blob740bb2d4c5c061828a124eccc33677e64aa21d3c
1 #!/usr/bin/env python3
2 # Copyright (c) 2014-2016 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 """Test the wallet accounts properly when there are cloned transactions with malleated scriptsigs."""
7 from test_framework.test_framework import BitcoinTestFramework
8 from test_framework.util import *
10 class TxnMallTest(BitcoinTestFramework):
11 def set_test_params(self):
12 self.num_nodes = 4
14 def add_options(self, parser):
15 parser.add_option("--mineblock", dest="mine_block", default=False, action="store_true",
16 help="Test double-spend of 1-confirmed transaction")
18 def setup_network(self):
19 # Start with split network:
20 super(TxnMallTest, self).setup_network()
21 disconnect_nodes(self.nodes[1], 2)
22 disconnect_nodes(self.nodes[2], 1)
24 def run_test(self):
25 # All nodes should start with 1,250 BTC:
26 starting_balance = 1250
27 for i in range(4):
28 assert_equal(self.nodes[i].getbalance(), starting_balance)
29 self.nodes[i].getnewaddress("") # bug workaround, coins generated assigned to first getnewaddress!
31 # Assign coins to foo and bar accounts:
32 self.nodes[0].settxfee(.001)
34 node0_address_foo = self.nodes[0].getnewaddress("foo")
35 fund_foo_txid = self.nodes[0].sendfrom("", node0_address_foo, 1219)
36 fund_foo_tx = self.nodes[0].gettransaction(fund_foo_txid)
38 node0_address_bar = self.nodes[0].getnewaddress("bar")
39 fund_bar_txid = self.nodes[0].sendfrom("", node0_address_bar, 29)
40 fund_bar_tx = self.nodes[0].gettransaction(fund_bar_txid)
42 assert_equal(self.nodes[0].getbalance(""),
43 starting_balance - 1219 - 29 + fund_foo_tx["fee"] + fund_bar_tx["fee"])
45 # Coins are sent to node1_address
46 node1_address = self.nodes[1].getnewaddress("from0")
48 # Send tx1, and another transaction tx2 that won't be cloned
49 txid1 = self.nodes[0].sendfrom("foo", node1_address, 40, 0)
50 txid2 = self.nodes[0].sendfrom("bar", node1_address, 20, 0)
52 # Construct a clone of tx1, to be malleated
53 rawtx1 = self.nodes[0].getrawtransaction(txid1,1)
54 clone_inputs = [{"txid":rawtx1["vin"][0]["txid"],"vout":rawtx1["vin"][0]["vout"]}]
55 clone_outputs = {rawtx1["vout"][0]["scriptPubKey"]["addresses"][0]:rawtx1["vout"][0]["value"],
56 rawtx1["vout"][1]["scriptPubKey"]["addresses"][0]:rawtx1["vout"][1]["value"]}
57 clone_locktime = rawtx1["locktime"]
58 clone_raw = self.nodes[0].createrawtransaction(clone_inputs, clone_outputs, clone_locktime)
60 # createrawtransaction randomizes the order of its outputs, so swap them if necessary.
61 # output 0 is at version+#inputs+input+sigstub+sequence+#outputs
62 # 40 BTC serialized is 00286bee00000000
63 pos0 = 2*(4+1+36+1+4+1)
64 hex40 = "00286bee00000000"
65 output_len = 16 + 2 + 2 * int("0x" + clone_raw[pos0 + 16 : pos0 + 16 + 2], 0)
66 if (rawtx1["vout"][0]["value"] == 40 and clone_raw[pos0 : pos0 + 16] != hex40 or
67 rawtx1["vout"][0]["value"] != 40 and clone_raw[pos0 : pos0 + 16] == hex40):
68 output0 = clone_raw[pos0 : pos0 + output_len]
69 output1 = clone_raw[pos0 + output_len : pos0 + 2 * output_len]
70 clone_raw = clone_raw[:pos0] + output1 + output0 + clone_raw[pos0 + 2 * output_len:]
72 # Use a different signature hash type to sign. This creates an equivalent but malleated clone.
73 # Don't send the clone anywhere yet
74 tx1_clone = self.nodes[0].signrawtransaction(clone_raw, None, None, "ALL|ANYONECANPAY")
75 assert_equal(tx1_clone["complete"], True)
77 # Have node0 mine a block, if requested:
78 if (self.options.mine_block):
79 self.nodes[0].generate(1)
80 sync_blocks(self.nodes[0:2])
82 tx1 = self.nodes[0].gettransaction(txid1)
83 tx2 = self.nodes[0].gettransaction(txid2)
85 # Node0's balance should be starting balance, plus 50BTC for another
86 # matured block, minus tx1 and tx2 amounts, and minus transaction fees:
87 expected = starting_balance + fund_foo_tx["fee"] + fund_bar_tx["fee"]
88 if self.options.mine_block: expected += 50
89 expected += tx1["amount"] + tx1["fee"]
90 expected += tx2["amount"] + tx2["fee"]
91 assert_equal(self.nodes[0].getbalance(), expected)
93 # foo and bar accounts should be debited:
94 assert_equal(self.nodes[0].getbalance("foo", 0), 1219 + tx1["amount"] + tx1["fee"])
95 assert_equal(self.nodes[0].getbalance("bar", 0), 29 + tx2["amount"] + tx2["fee"])
97 if self.options.mine_block:
98 assert_equal(tx1["confirmations"], 1)
99 assert_equal(tx2["confirmations"], 1)
100 # Node1's "from0" balance should be both transaction amounts:
101 assert_equal(self.nodes[1].getbalance("from0"), -(tx1["amount"] + tx2["amount"]))
102 else:
103 assert_equal(tx1["confirmations"], 0)
104 assert_equal(tx2["confirmations"], 0)
106 # Send clone and its parent to miner
107 self.nodes[2].sendrawtransaction(fund_foo_tx["hex"])
108 txid1_clone = self.nodes[2].sendrawtransaction(tx1_clone["hex"])
109 # ... mine a block...
110 self.nodes[2].generate(1)
112 # Reconnect the split network, and sync chain:
113 connect_nodes(self.nodes[1], 2)
114 self.nodes[2].sendrawtransaction(fund_bar_tx["hex"])
115 self.nodes[2].sendrawtransaction(tx2["hex"])
116 self.nodes[2].generate(1) # Mine another block to make sure we sync
117 sync_blocks(self.nodes)
119 # Re-fetch transaction info:
120 tx1 = self.nodes[0].gettransaction(txid1)
121 tx1_clone = self.nodes[0].gettransaction(txid1_clone)
122 tx2 = self.nodes[0].gettransaction(txid2)
124 # Verify expected confirmations
125 assert_equal(tx1["confirmations"], -2)
126 assert_equal(tx1_clone["confirmations"], 2)
127 assert_equal(tx2["confirmations"], 1)
129 # Check node0's total balance; should be same as before the clone, + 100 BTC for 2 matured,
130 # less possible orphaned matured subsidy
131 expected += 100
132 if (self.options.mine_block):
133 expected -= 50
134 assert_equal(self.nodes[0].getbalance(), expected)
135 assert_equal(self.nodes[0].getbalance("*", 0), expected)
137 # Check node0's individual account balances.
138 # "foo" should have been debited by the equivalent clone of tx1
139 assert_equal(self.nodes[0].getbalance("foo"), 1219 + tx1["amount"] + tx1["fee"])
140 # "bar" should have been debited by (possibly unconfirmed) tx2
141 assert_equal(self.nodes[0].getbalance("bar", 0), 29 + tx2["amount"] + tx2["fee"])
142 # "" should have starting balance, less funding txes, plus subsidies
143 assert_equal(self.nodes[0].getbalance("", 0), starting_balance
144 - 1219
145 + fund_foo_tx["fee"]
146 - 29
147 + fund_bar_tx["fee"]
148 + 100)
150 # Node1's "from0" account balance
151 assert_equal(self.nodes[1].getbalance("from0", 0), -(tx1["amount"] + tx2["amount"]))
153 if __name__ == '__main__':
154 TxnMallTest().main()