You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
208 lines
10 KiB
208 lines
10 KiB
9 years ago
|
#!/usr/bin/env python3
|
||
|
# Copyright (c) 2014-2016 The Bitcoin Core developers
|
||
10 years ago
|
# Distributed under the MIT software license, see the accompanying
|
||
11 years ago
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
8 years ago
|
"""Test the listtransactions API."""
|
||
11 years ago
|
|
||
10 years ago
|
from test_framework.test_framework import BitcoinTestFramework
|
||
|
from test_framework.util import *
|
||
9 years ago
|
from test_framework.mininode import CTransaction, COIN
|
||
9 years ago
|
from io import BytesIO
|
||
11 years ago
|
|
||
9 years ago
|
def txFromHex(hexstring):
|
||
|
tx = CTransaction()
|
||
9 years ago
|
f = BytesIO(hex_str_to_bytes(hexstring))
|
||
9 years ago
|
tx.deserialize(f)
|
||
|
return tx
|
||
11 years ago
|
|
||
10 years ago
|
class ListTransactionsTest(BitcoinTestFramework):
|
||
9 years ago
|
def __init__(self):
|
||
|
super().__init__()
|
||
|
self.num_nodes = 4
|
||
|
self.setup_clean_chain = False
|
||
10 years ago
|
|
||
9 years ago
|
def setup_nodes(self):
|
||
|
#This test requires mocktime
|
||
|
enable_mocktime()
|
||
9 years ago
|
return start_nodes(self.num_nodes, self.options.tmpdir)
|
||
9 years ago
|
|
||
10 years ago
|
def run_test(self):
|
||
10 years ago
|
# Simple send, 0 to 1:
|
||
10 years ago
|
txid = self.nodes[0].sendtoaddress(self.nodes[1].getnewaddress(), 0.1)
|
||
|
self.sync_all()
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(),
|
||
10 years ago
|
{"txid":txid},
|
||
|
{"category":"send","account":"","amount":Decimal("-0.1"),"confirmations":0})
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(),
|
||
10 years ago
|
{"txid":txid},
|
||
|
{"category":"receive","account":"","amount":Decimal("0.1"),"confirmations":0})
|
||
|
# mine a block, confirmations should change:
|
||
10 years ago
|
self.nodes[0].generate(1)
|
||
10 years ago
|
self.sync_all()
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(),
|
||
10 years ago
|
{"txid":txid},
|
||
|
{"category":"send","account":"","amount":Decimal("-0.1"),"confirmations":1})
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(),
|
||
10 years ago
|
{"txid":txid},
|
||
|
{"category":"receive","account":"","amount":Decimal("0.1"),"confirmations":1})
|
||
|
|
||
|
# send-to-self:
|
||
10 years ago
|
txid = self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), 0.2)
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(),
|
||
10 years ago
|
{"txid":txid, "category":"send"},
|
||
|
{"amount":Decimal("-0.2")})
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(),
|
||
10 years ago
|
{"txid":txid, "category":"receive"},
|
||
|
{"amount":Decimal("0.2")})
|
||
|
|
||
|
# sendmany from node1: twice to self, twice to node2:
|
||
10 years ago
|
send_to = { self.nodes[0].getnewaddress() : 0.11,
|
||
|
self.nodes[1].getnewaddress() : 0.22,
|
||
|
self.nodes[0].getaccountaddress("from1") : 0.33,
|
||
|
self.nodes[1].getaccountaddress("toself") : 0.44 }
|
||
|
txid = self.nodes[1].sendmany("", send_to)
|
||
|
self.sync_all()
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(),
|
||
10 years ago
|
{"category":"send","amount":Decimal("-0.11")},
|
||
|
{"txid":txid} )
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(),
|
||
10 years ago
|
{"category":"receive","amount":Decimal("0.11")},
|
||
|
{"txid":txid} )
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(),
|
||
10 years ago
|
{"category":"send","amount":Decimal("-0.22")},
|
||
|
{"txid":txid} )
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(),
|
||
10 years ago
|
{"category":"receive","amount":Decimal("0.22")},
|
||
|
{"txid":txid} )
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(),
|
||
10 years ago
|
{"category":"send","amount":Decimal("-0.33")},
|
||
|
{"txid":txid} )
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(),
|
||
10 years ago
|
{"category":"receive","amount":Decimal("0.33")},
|
||
|
{"txid":txid, "account" : "from1"} )
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(),
|
||
10 years ago
|
{"category":"send","amount":Decimal("-0.44")},
|
||
|
{"txid":txid, "account" : ""} )
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(),
|
||
10 years ago
|
{"category":"receive","amount":Decimal("0.44")},
|
||
|
{"txid":txid, "account" : "toself"} )
|
||
11 years ago
|
|
||
10 years ago
|
multisig = self.nodes[1].createmultisig(1, [self.nodes[1].getnewaddress()])
|
||
|
self.nodes[0].importaddress(multisig["redeemScript"], "watchonly", False, True)
|
||
|
txid = self.nodes[1].sendtoaddress(multisig["address"], 0.1)
|
||
|
self.nodes[1].generate(1)
|
||
|
self.sync_all()
|
||
|
assert(len(self.nodes[0].listtransactions("watchonly", 100, 0, False)) == 0)
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions("watchonly", 100, 0, True),
|
||
10 years ago
|
{"category":"receive","amount":Decimal("0.1")},
|
||
|
{"txid":txid, "account" : "watchonly"} )
|
||
|
|
||
9 years ago
|
self.run_rbf_opt_in_test()
|
||
|
|
||
|
# Check that the opt-in-rbf flag works properly, for sent and received
|
||
|
# transactions.
|
||
|
def run_rbf_opt_in_test(self):
|
||
|
# Check whether a transaction signals opt-in RBF itself
|
||
|
def is_opt_in(node, txid):
|
||
|
rawtx = node.getrawtransaction(txid, 1)
|
||
|
for x in rawtx["vin"]:
|
||
|
if x["sequence"] < 0xfffffffe:
|
||
|
return True
|
||
|
return False
|
||
|
|
||
|
# Find an unconfirmed output matching a certain txid
|
||
|
def get_unconfirmed_utxo_entry(node, txid_to_match):
|
||
|
utxo = node.listunspent(0, 0)
|
||
|
for i in utxo:
|
||
|
if i["txid"] == txid_to_match:
|
||
|
return i
|
||
|
return None
|
||
|
|
||
|
# 1. Chain a few transactions that don't opt-in.
|
||
|
txid_1 = self.nodes[0].sendtoaddress(self.nodes[1].getnewaddress(), 1)
|
||
|
assert(not is_opt_in(self.nodes[0], txid_1))
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(), {"txid": txid_1}, {"bip125-replaceable":"no"})
|
||
9 years ago
|
sync_mempools(self.nodes)
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(), {"txid": txid_1}, {"bip125-replaceable":"no"})
|
||
9 years ago
|
|
||
|
# Tx2 will build off txid_1, still not opting in to RBF.
|
||
8 years ago
|
utxo_to_use = get_unconfirmed_utxo_entry(self.nodes[0], txid_1)
|
||
|
assert_equal(utxo_to_use["safe"], True)
|
||
9 years ago
|
utxo_to_use = get_unconfirmed_utxo_entry(self.nodes[1], txid_1)
|
||
8 years ago
|
utxo_to_use = get_unconfirmed_utxo_entry(self.nodes[1], txid_1)
|
||
|
assert_equal(utxo_to_use["safe"], False)
|
||
9 years ago
|
|
||
|
# Create tx2 using createrawtransaction
|
||
|
inputs = [{"txid":utxo_to_use["txid"], "vout":utxo_to_use["vout"]}]
|
||
|
outputs = {self.nodes[0].getnewaddress(): 0.999}
|
||
|
tx2 = self.nodes[1].createrawtransaction(inputs, outputs)
|
||
|
tx2_signed = self.nodes[1].signrawtransaction(tx2)["hex"]
|
||
|
txid_2 = self.nodes[1].sendrawtransaction(tx2_signed)
|
||
|
|
||
|
# ...and check the result
|
||
|
assert(not is_opt_in(self.nodes[1], txid_2))
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(), {"txid": txid_2}, {"bip125-replaceable":"no"})
|
||
9 years ago
|
sync_mempools(self.nodes)
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(), {"txid": txid_2}, {"bip125-replaceable":"no"})
|
||
9 years ago
|
|
||
|
# Tx3 will opt-in to RBF
|
||
|
utxo_to_use = get_unconfirmed_utxo_entry(self.nodes[0], txid_2)
|
||
|
inputs = [{"txid": txid_2, "vout":utxo_to_use["vout"]}]
|
||
|
outputs = {self.nodes[1].getnewaddress(): 0.998}
|
||
|
tx3 = self.nodes[0].createrawtransaction(inputs, outputs)
|
||
|
tx3_modified = txFromHex(tx3)
|
||
|
tx3_modified.vin[0].nSequence = 0
|
||
9 years ago
|
tx3 = bytes_to_hex_str(tx3_modified.serialize())
|
||
9 years ago
|
tx3_signed = self.nodes[0].signrawtransaction(tx3)['hex']
|
||
|
txid_3 = self.nodes[0].sendrawtransaction(tx3_signed)
|
||
|
|
||
|
assert(is_opt_in(self.nodes[0], txid_3))
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(), {"txid": txid_3}, {"bip125-replaceable":"yes"})
|
||
9 years ago
|
sync_mempools(self.nodes)
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(), {"txid": txid_3}, {"bip125-replaceable":"yes"})
|
||
9 years ago
|
|
||
|
# Tx4 will chain off tx3. Doesn't signal itself, but depends on one
|
||
|
# that does.
|
||
|
utxo_to_use = get_unconfirmed_utxo_entry(self.nodes[1], txid_3)
|
||
|
inputs = [{"txid": txid_3, "vout":utxo_to_use["vout"]}]
|
||
|
outputs = {self.nodes[0].getnewaddress(): 0.997}
|
||
|
tx4 = self.nodes[1].createrawtransaction(inputs, outputs)
|
||
|
tx4_signed = self.nodes[1].signrawtransaction(tx4)["hex"]
|
||
|
txid_4 = self.nodes[1].sendrawtransaction(tx4_signed)
|
||
|
|
||
|
assert(not is_opt_in(self.nodes[1], txid_4))
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(), {"txid": txid_4}, {"bip125-replaceable":"yes"})
|
||
9 years ago
|
sync_mempools(self.nodes)
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(), {"txid": txid_4}, {"bip125-replaceable":"yes"})
|
||
9 years ago
|
|
||
|
# Replace tx3, and check that tx4 becomes unknown
|
||
|
tx3_b = tx3_modified
|
||
9 years ago
|
tx3_b.vout[0].nValue -= int(Decimal("0.004") * COIN) # bump the fee
|
||
9 years ago
|
tx3_b = bytes_to_hex_str(tx3_b.serialize())
|
||
9 years ago
|
tx3_b_signed = self.nodes[0].signrawtransaction(tx3_b)['hex']
|
||
|
txid_3b = self.nodes[0].sendrawtransaction(tx3_b_signed, True)
|
||
|
assert(is_opt_in(self.nodes[0], txid_3b))
|
||
|
|
||
9 years ago
|
assert_array_result(self.nodes[0].listtransactions(), {"txid": txid_4}, {"bip125-replaceable":"unknown"})
|
||
9 years ago
|
sync_mempools(self.nodes)
|
||
9 years ago
|
assert_array_result(self.nodes[1].listtransactions(), {"txid": txid_4}, {"bip125-replaceable":"unknown"})
|
||
9 years ago
|
|
||
|
# Check gettransaction as well:
|
||
|
for n in self.nodes[0:2]:
|
||
|
assert_equal(n.gettransaction(txid_1)["bip125-replaceable"], "no")
|
||
|
assert_equal(n.gettransaction(txid_2)["bip125-replaceable"], "no")
|
||
|
assert_equal(n.gettransaction(txid_3)["bip125-replaceable"], "yes")
|
||
|
assert_equal(n.gettransaction(txid_3b)["bip125-replaceable"], "yes")
|
||
|
assert_equal(n.gettransaction(txid_4)["bip125-replaceable"], "unknown")
|
||
|
|
||
|
# After mining a transaction, it's no longer BIP125-replaceable
|
||
|
self.nodes[0].generate(1)
|
||
|
assert(txid_3b not in self.nodes[0].getrawmempool())
|
||
|
assert_equal(self.nodes[0].gettransaction(txid_3b)["bip125-replaceable"], "no")
|
||
|
assert_equal(self.nodes[0].gettransaction(txid_4)["bip125-replaceable"], "unknown")
|
||
|
|
||
|
|
||
11 years ago
|
if __name__ == '__main__':
|
||
10 years ago
|
ListTransactionsTest().main()
|
||
|
|