2016-05-06 11:23:48 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2014-2016 The Bitcoin Core developers
|
2014-10-23 03:48:19 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
2014-03-18 10:11:00 +01:00
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Test the listtransactions API."""
|
2014-02-26 22:31:18 +01:00
|
|
|
|
2015-05-02 12:53:35 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
from test_framework.util import *
|
2020-06-14 03:58:03 +02:00
|
|
|
from test_framework.mininode import CTransaction
|
2016-03-19 21:36:32 +01:00
|
|
|
from io import BytesIO
|
2014-02-26 22:31:18 +01:00
|
|
|
|
2015-12-16 20:57:54 +01:00
|
|
|
def txFromHex(hexstring):
|
|
|
|
tx = CTransaction()
|
2016-04-10 16:54:28 +02:00
|
|
|
f = BytesIO(hex_str_to_bytes(hexstring))
|
2015-12-16 20:57:54 +01:00
|
|
|
tx.deserialize(f)
|
|
|
|
return tx
|
2014-02-26 22:31:18 +01:00
|
|
|
|
2014-07-08 18:07:23 +02:00
|
|
|
class ListTransactionsTest(BitcoinTestFramework):
|
2017-09-01 18:47:13 +02:00
|
|
|
def set_test_params(self):
|
|
|
|
self.num_nodes = 2
|
2017-06-29 17:37:19 +02:00
|
|
|
self.set_cache_mocktime()
|
2017-05-02 20:02:55 +02:00
|
|
|
|
2014-10-20 14:14:04 +02:00
|
|
|
def run_test(self):
|
2014-07-08 18:07:23 +02:00
|
|
|
# Simple send, 0 to 1:
|
2014-10-20 14:14:04 +02:00
|
|
|
txid = self.nodes[0].sendtoaddress(self.nodes[1].getnewaddress(), 0.1)
|
|
|
|
self.sync_all()
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[0].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"txid":txid},
|
|
|
|
{"category":"send","account":"","amount":Decimal("-0.1"),"confirmations":0})
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"txid":txid},
|
|
|
|
{"category":"receive","account":"","amount":Decimal("0.1"),"confirmations":0})
|
|
|
|
# mine a block, confirmations should change:
|
2015-04-01 05:28:28 +02:00
|
|
|
self.nodes[0].generate(1)
|
2014-10-20 14:14:04 +02:00
|
|
|
self.sync_all()
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[0].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"txid":txid},
|
|
|
|
{"category":"send","account":"","amount":Decimal("-0.1"),"confirmations":1})
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"txid":txid},
|
|
|
|
{"category":"receive","account":"","amount":Decimal("0.1"),"confirmations":1})
|
|
|
|
|
|
|
|
# send-to-self:
|
2014-10-20 14:14:04 +02:00
|
|
|
txid = self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), 0.2)
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[0].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"txid":txid, "category":"send"},
|
|
|
|
{"amount":Decimal("-0.2")})
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[0].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"txid":txid, "category":"receive"},
|
|
|
|
{"amount":Decimal("0.2")})
|
|
|
|
|
|
|
|
# sendmany from node1: twice to self, twice to node2:
|
2014-10-20 14:14:04 +02:00
|
|
|
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()
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"category":"send","amount":Decimal("-0.11")},
|
|
|
|
{"txid":txid} )
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[0].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"category":"receive","amount":Decimal("0.11")},
|
|
|
|
{"txid":txid} )
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"category":"send","amount":Decimal("-0.22")},
|
|
|
|
{"txid":txid} )
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"category":"receive","amount":Decimal("0.22")},
|
|
|
|
{"txid":txid} )
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"category":"send","amount":Decimal("-0.33")},
|
|
|
|
{"txid":txid} )
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[0].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"category":"receive","amount":Decimal("0.33")},
|
|
|
|
{"txid":txid, "account" : "from1"} )
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"category":"send","amount":Decimal("-0.44")},
|
|
|
|
{"txid":txid, "account" : ""} )
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2014-07-08 18:07:23 +02:00
|
|
|
{"category":"receive","amount":Decimal("0.44")},
|
|
|
|
{"txid":txid, "account" : "toself"} )
|
2014-02-26 22:31:18 +01:00
|
|
|
|
2020-05-15 11:34:41 +02:00
|
|
|
pubkey = self.nodes[1].validateaddress(self.nodes[1].getnewaddress())['pubkey']
|
|
|
|
multisig = self.nodes[1].createmultisig(1, [pubkey])
|
2015-06-11 09:57:50 +02:00
|
|
|
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)
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[0].listtransactions("watchonly", 100, 0, True),
|
2015-06-11 09:57:50 +02:00
|
|
|
{"category":"receive","amount":Decimal("0.1")},
|
|
|
|
{"txid":txid, "account" : "watchonly"} )
|
|
|
|
|
2014-02-26 22:31:18 +01:00
|
|
|
if __name__ == '__main__':
|
2014-07-08 18:07:23 +02:00
|
|
|
ListTransactionsTest().main()
|
|
|
|
|