2016-05-06 11:23:48 +02:00
|
|
|
#!/usr/bin/env python3
|
2020-12-31 18:50:11 +01:00
|
|
|
# Copyright (c) 2014-2020 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."""
|
2021-04-12 16:58:49 +02:00
|
|
|
from decimal import Decimal
|
2014-02-26 22:31:18 +01:00
|
|
|
|
2021-04-12 16:58:49 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2021-06-24 12:47:04 +02:00
|
|
|
from test_framework.util import (
|
|
|
|
assert_array_result,
|
|
|
|
assert_equal,
|
|
|
|
)
|
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-05-02 20:02:55 +02:00
|
|
|
|
2018-09-13 12:33:15 +02:00
|
|
|
def skip_test_if_missing_module(self):
|
|
|
|
self.skip_if_no_wallet()
|
|
|
|
|
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(),
|
2021-04-12 16:58:49 +02:00
|
|
|
{"txid": txid},
|
|
|
|
{"category": "send", "amount": Decimal("-0.1"), "confirmations": 0})
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2021-04-12 16:58:49 +02:00
|
|
|
{"txid": txid},
|
|
|
|
{"category": "receive", "amount": Decimal("0.1"), "confirmations": 0})
|
2014-07-08 18:07:23 +02:00
|
|
|
# mine a block, confirmations should change:
|
2019-11-12 20:43:26 +01:00
|
|
|
blockhash = self.nodes[0].generate(1)[0]
|
|
|
|
blockheight = self.nodes[0].getblockheader(blockhash)['height']
|
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(),
|
2021-04-12 16:58:49 +02:00
|
|
|
{"txid": txid},
|
2019-11-12 20:43:26 +01:00
|
|
|
{"category": "send", "amount": Decimal("-0.1"), "confirmations": 1, "blockhash": blockhash, "blockheight": blockheight})
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2021-04-12 16:58:49 +02:00
|
|
|
{"txid": txid},
|
2019-11-12 20:43:26 +01:00
|
|
|
{"category": "receive", "amount": Decimal("0.1"), "confirmations": 1, "blockhash": blockhash, "blockheight": blockheight})
|
2014-07-08 18:07:23 +02:00
|
|
|
|
|
|
|
# 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(),
|
2021-04-12 16:58:49 +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(),
|
2021-04-12 16:58:49 +02:00
|
|
|
{"txid": txid, "category": "receive"},
|
|
|
|
{"amount": Decimal("0.2")})
|
2014-07-08 18:07:23 +02:00
|
|
|
|
|
|
|
# sendmany from node1: twice to self, twice to node2:
|
2021-04-12 16:58:49 +02:00
|
|
|
send_to = {self.nodes[0].getnewaddress(): 0.11,
|
|
|
|
self.nodes[1].getnewaddress(): 0.22,
|
|
|
|
self.nodes[0].getnewaddress(): 0.33,
|
|
|
|
self.nodes[1].getnewaddress(): 0.44}
|
2014-10-20 14:14:04 +02:00
|
|
|
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(),
|
2021-04-12 16:58:49 +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(),
|
2021-04-12 16:58:49 +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(),
|
2021-04-12 16:58:49 +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(),
|
2021-04-12 16:58:49 +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(),
|
2021-04-12 16:58:49 +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(),
|
2021-04-12 16:58:49 +02:00
|
|
|
{"category": "receive", "amount": Decimal("0.33")},
|
|
|
|
{"txid": txid} )
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2021-04-12 16:58:49 +02:00
|
|
|
{"category": "send", "amount": Decimal("-0.44")},
|
|
|
|
{"txid": txid} )
|
2016-04-19 13:22:11 +02:00
|
|
|
assert_array_result(self.nodes[1].listtransactions(),
|
2021-04-12 16:58:49 +02:00
|
|
|
{"category": "receive", "amount": Decimal("0.44")},
|
|
|
|
{"txid": txid} )
|
2014-02-26 22:31:18 +01:00
|
|
|
|
2020-11-02 16:54:06 +01:00
|
|
|
if not self.options.descriptors:
|
|
|
|
# include_watchonly is a legacy wallet feature, so don't test it for descriptor wallets
|
|
|
|
pubkey = self.nodes[1].getaddressinfo(self.nodes[1].getnewaddress())['pubkey']
|
|
|
|
multisig = self.nodes[1].createmultisig(1, [pubkey])
|
|
|
|
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_equal(len(self.nodes[0].listtransactions(label="watchonly", include_watchonly=True)), 1)
|
|
|
|
assert_equal(len(self.nodes[0].listtransactions(dummy="watchonly", include_watchonly=True)), 1)
|
|
|
|
assert len(self.nodes[0].listtransactions(label="watchonly", count=100, include_watchonly=False)) == 0
|
|
|
|
assert_array_result(self.nodes[0].listtransactions(label="watchonly", count=100, include_watchonly=True),
|
|
|
|
{"category": "receive", "amount": Decimal("0.1")},
|
|
|
|
{"txid": txid, "label": "watchonly"})
|
2015-06-11 09:57:50 +02:00
|
|
|
|
2014-02-26 22:31:18 +01:00
|
|
|
if __name__ == '__main__':
|
2014-07-08 18:07:23 +02:00
|
|
|
ListTransactionsTest().main()
|