2019-03-16 08:24:43 -06:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-05-06 20:36:54 -06:00
|
|
|
# Copyright (c) 2019-2020 The Monero Project
|
2019-03-16 08:24:43 -06:00
|
|
|
#
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
# conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
# of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
# materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software without specific
|
|
|
|
# prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
# THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2019-05-29 05:45:25 -06:00
|
|
|
from __future__ import print_function
|
2019-04-13 17:39:12 -06:00
|
|
|
import json
|
2019-03-16 08:24:43 -06:00
|
|
|
|
|
|
|
"""Test simple transfers
|
|
|
|
"""
|
|
|
|
|
2019-03-22 08:35:23 -06:00
|
|
|
from framework.daemon import Daemon
|
|
|
|
from framework.wallet import Wallet
|
2019-03-16 08:24:43 -06:00
|
|
|
|
|
|
|
class TransferTest():
|
|
|
|
def run_test(self):
|
2019-04-19 16:47:44 -06:00
|
|
|
self.reset()
|
2019-03-22 05:33:42 -06:00
|
|
|
self.create()
|
2019-03-16 08:24:43 -06:00
|
|
|
self.mine()
|
|
|
|
self.transfer()
|
2019-03-19 07:20:42 -06:00
|
|
|
self.check_get_bulk_payments()
|
2019-04-29 13:23:42 -06:00
|
|
|
self.check_get_payments()
|
2019-03-25 14:49:09 -06:00
|
|
|
self.check_double_spend_detection()
|
2019-04-29 13:09:13 -06:00
|
|
|
self.sweep_dust()
|
2019-04-13 17:39:12 -06:00
|
|
|
self.sweep_single()
|
2019-05-02 03:03:54 -06:00
|
|
|
self.check_destinations()
|
2019-05-02 06:31:08 -06:00
|
|
|
self.check_tx_notes()
|
2019-05-02 05:04:43 -06:00
|
|
|
self.check_rescan()
|
2019-05-09 09:39:30 -06:00
|
|
|
self.check_is_key_image_spent()
|
2019-03-16 08:24:43 -06:00
|
|
|
|
2019-04-19 16:47:44 -06:00
|
|
|
def reset(self):
|
2019-05-29 05:45:25 -06:00
|
|
|
print('Resetting blockchain')
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-05-26 12:14:01 -06:00
|
|
|
res = daemon.get_height()
|
|
|
|
daemon.pop_blocks(res.height - 1)
|
2019-04-19 16:47:44 -06:00
|
|
|
daemon.flush_txpool()
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
def create(self):
|
2019-05-29 05:45:25 -06:00
|
|
|
print('Creating wallets')
|
2019-03-16 08:24:43 -06:00
|
|
|
seeds = [
|
|
|
|
'velvet lymph giddy number token physics poetry unquoted nibs useful sabotage limits benches lifestyle eden nitrogen anvil fewest avoid batch vials washing fences goat unquoted',
|
|
|
|
'peeled mixture ionic radar utopia puddle buying illness nuns gadget river spout cavernous bounced paradise drunk looking cottage jump tequila melting went winter adjust spout',
|
|
|
|
'dilute gutter certain antics pamphlet macro enjoy left slid guarded bogeys upload nineteen bomb jubilee enhanced irritate turnip eggs swung jukebox loudly reduce sedan slid',
|
|
|
|
]
|
2019-03-22 05:33:42 -06:00
|
|
|
self.wallet = [None] * len(seeds)
|
|
|
|
for i in range(len(seeds)):
|
2020-04-24 16:30:23 -06:00
|
|
|
self.wallet[i] = Wallet(idx = i)
|
2019-03-22 05:33:42 -06:00
|
|
|
# close the wallet if any, will throw if none is loaded
|
|
|
|
try: self.wallet[i].close_wallet()
|
|
|
|
except: pass
|
|
|
|
res = self.wallet[i].restore_deterministic_wallet(seed = seeds[i])
|
2019-03-16 08:24:43 -06:00
|
|
|
|
|
|
|
def mine(self):
|
|
|
|
print("Mining some blocks")
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-03-16 08:24:43 -06:00
|
|
|
|
2019-03-25 04:59:46 -06:00
|
|
|
res = daemon.get_info()
|
|
|
|
height = res.height
|
|
|
|
|
2019-03-16 08:24:43 -06:00
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 80)
|
2019-03-22 05:33:42 -06:00
|
|
|
for i in range(len(self.wallet)):
|
|
|
|
self.wallet[i].refresh()
|
2019-03-25 04:59:46 -06:00
|
|
|
res = self.wallet[i].get_height()
|
|
|
|
assert res.height == height + 80
|
2019-03-16 08:24:43 -06:00
|
|
|
|
|
|
|
def transfer(self):
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-03-16 08:24:43 -06:00
|
|
|
|
|
|
|
print("Creating transfer to self")
|
|
|
|
|
|
|
|
dst = {'address': '42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 'amount': 1000000000000}
|
|
|
|
payment_id = '1234500000012345abcde00000abcdeff1234500000012345abcde00000abcde'
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
start_balances = [0] * len(self.wallet)
|
|
|
|
running_balances = [0] * len(self.wallet)
|
|
|
|
for i in range(len(self.wallet)):
|
|
|
|
res = self.wallet[i].get_balance()
|
|
|
|
start_balances[i] = res.balance
|
|
|
|
running_balances[i] = res.balance
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
if i == 0:
|
|
|
|
assert res.blocks_to_unlock == 59 # we've been mining to it
|
|
|
|
else:
|
|
|
|
assert res.blocks_to_unlock == 0
|
|
|
|
|
2019-03-19 10:21:06 -06:00
|
|
|
print ('Checking short payment IDs cannot be used when not in an integrated address')
|
|
|
|
ok = False
|
2019-03-22 05:33:42 -06:00
|
|
|
try: self.wallet[0].transfer([dst], ring_size = 11, payment_id = '1234567812345678', get_tx_key = False)
|
2019-03-19 10:21:06 -06:00
|
|
|
except: ok = True
|
|
|
|
assert ok
|
|
|
|
|
2019-06-18 03:28:27 -06:00
|
|
|
print ('Checking long payment IDs are rejected')
|
|
|
|
ok = False
|
|
|
|
try: self.wallet[0].transfer([dst], ring_size = 11, payment_id = payment_id, get_tx_key = False, get_tx_hex = True)
|
|
|
|
except: ok = True
|
|
|
|
assert ok
|
|
|
|
|
2019-03-19 10:21:06 -06:00
|
|
|
print ('Checking empty destination is rejected')
|
|
|
|
ok = False
|
2019-03-22 05:33:42 -06:00
|
|
|
try: self.wallet[0].transfer([], ring_size = 11, get_tx_key = False)
|
2019-03-19 10:21:06 -06:00
|
|
|
except: ok = True
|
|
|
|
assert ok
|
|
|
|
|
2019-06-18 03:28:27 -06:00
|
|
|
res = self.wallet[0].transfer([dst], ring_size = 11, get_tx_key = False, get_tx_hex = True)
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res.tx_hash) == 32*2
|
|
|
|
txid = res.tx_hash
|
|
|
|
assert len(res.tx_key) == 0
|
|
|
|
assert res.amount > 0
|
|
|
|
amount = res.amount
|
|
|
|
assert res.fee > 0
|
|
|
|
fee = res.fee
|
2019-05-02 11:59:49 -06:00
|
|
|
assert len(res.tx_blob) > 0
|
2019-06-09 07:02:16 -06:00
|
|
|
tx_weight = res.weight
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res.tx_metadata) == 0
|
|
|
|
assert len(res.multisig_txset) == 0
|
|
|
|
assert len(res.unsigned_txset) == 0
|
|
|
|
unsigned_txset = res.unsigned_txset
|
|
|
|
|
2019-05-02 11:59:49 -06:00
|
|
|
res = daemon.get_fee_estimate(10)
|
|
|
|
assert res.fee > 0
|
|
|
|
assert res.quantization_mask > 0
|
2019-06-09 07:02:16 -06:00
|
|
|
expected_fee = (res.fee * 1 * tx_weight + res.quantization_mask - 1) // res.quantization_mask * res.quantization_mask
|
2019-05-02 11:59:49 -06:00
|
|
|
assert abs(1 - fee / expected_fee) < 0.01
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
self.wallet[0].refresh()
|
2019-03-16 08:24:43 -06:00
|
|
|
|
|
|
|
res = daemon.get_info()
|
|
|
|
height = res.height
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[0].get_transfers()
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res['in']) == height - 1 # coinbases
|
|
|
|
assert not 'out' in res or len(res.out) == 0 # not mined yet
|
|
|
|
assert len(res.pending) == 1
|
|
|
|
assert not 'pool' in res or len(res.pool) == 0
|
|
|
|
assert not 'failed' in res or len(res.failed) == 0
|
|
|
|
for e in res['in']:
|
|
|
|
assert e.type == 'block'
|
|
|
|
e = res.pending[0]
|
|
|
|
assert e.txid == txid
|
2019-06-18 03:28:27 -06:00
|
|
|
assert e.payment_id in ['', '0000000000000000']
|
2019-03-16 08:24:43 -06:00
|
|
|
assert e.type == 'pending'
|
|
|
|
assert e.unlock_time == 0
|
|
|
|
assert e.subaddr_index.major == 0
|
|
|
|
assert e.subaddr_indices == [{'major': 0, 'minor': 0}]
|
|
|
|
assert e.address == '42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm'
|
|
|
|
assert e.double_spend_seen == False
|
2019-12-04 14:19:04 -07:00
|
|
|
assert not 'confirmations' in e or e.confirmations == 0
|
2019-03-16 08:24:43 -06:00
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
running_balances[0] -= 1000000000000 + fee
|
|
|
|
|
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
assert res.balance == running_balances[0]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 59
|
|
|
|
|
2019-03-16 08:24:43 -06:00
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 1)
|
2019-03-22 05:33:42 -06:00
|
|
|
res = daemon.getlastblockheader()
|
|
|
|
running_balances[0] += res.block_header.reward
|
|
|
|
self.wallet[0].refresh()
|
2019-03-16 08:24:43 -06:00
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
running_balances[0] += 1000000000000
|
|
|
|
|
|
|
|
res = self.wallet[0].get_transfers()
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res['in']) == height # coinbases
|
|
|
|
assert len(res.out) == 1 # not mined yet
|
|
|
|
assert not 'pending' in res or len(res.pending) == 0
|
|
|
|
assert not 'pool' in res or len(res.pool) == 0
|
|
|
|
assert not 'failed' in res or len(res.failed) == 0
|
|
|
|
for e in res['in']:
|
|
|
|
assert e.type == 'block'
|
|
|
|
e = res.out[0]
|
|
|
|
assert e.txid == txid
|
2019-06-18 03:28:27 -06:00
|
|
|
assert e.payment_id in ['', '0000000000000000']
|
2019-03-16 08:24:43 -06:00
|
|
|
assert e.type == 'out'
|
|
|
|
assert e.unlock_time == 0
|
|
|
|
assert e.subaddr_index.major == 0
|
|
|
|
assert e.subaddr_indices == [{'major': 0, 'minor': 0}]
|
|
|
|
assert e.address == '42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm'
|
|
|
|
assert e.double_spend_seen == False
|
|
|
|
assert e.confirmations == 1
|
|
|
|
|
2019-03-25 04:59:46 -06:00
|
|
|
res = self.wallet[0].get_height()
|
|
|
|
wallet_height = res.height
|
|
|
|
res = self.wallet[0].get_transfer_by_txid(txid)
|
|
|
|
assert len(res.transfers) == 1
|
|
|
|
assert res.transfers[0] == res.transfer
|
|
|
|
t = res.transfer
|
|
|
|
assert t.txid == txid
|
2019-06-18 03:28:27 -06:00
|
|
|
assert t.payment_id in ['', '0000000000000000']
|
2019-03-25 04:59:46 -06:00
|
|
|
assert t.height == wallet_height - 1
|
|
|
|
assert t.timestamp > 0
|
|
|
|
assert t.amount == 0 # to self, so it's just "pay a fee" really
|
|
|
|
assert t.fee == fee
|
|
|
|
assert t.note == ''
|
|
|
|
assert len(t.destinations) == 1
|
|
|
|
assert t.destinations[0] == {'address': '42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 'amount': 1000000000000}
|
|
|
|
assert t.type == 'out'
|
|
|
|
assert t.unlock_time == 0
|
|
|
|
assert t.address == '42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm'
|
|
|
|
assert t.double_spend_seen == False
|
|
|
|
assert t.confirmations == 1
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
assert res.balance == running_balances[0]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 59
|
|
|
|
|
2019-03-19 10:21:06 -06:00
|
|
|
print("Creating transfer to another, manual relay")
|
2019-03-16 08:24:43 -06:00
|
|
|
|
|
|
|
dst = {'address': '44Kbx4sJ7JDRDV5aAhLJzQCjDz2ViLRduE3ijDZu3osWKBjMGkV1XPk4pfDUMqt1Aiezvephdqm6YD19GKFD9ZcXVUTp6BW', 'amount': 1000000000000}
|
2019-06-18 03:28:27 -06:00
|
|
|
res = self.wallet[0].transfer([dst], ring_size = 11, get_tx_key = True, do_not_relay = True, get_tx_hex = True)
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res.tx_hash) == 32*2
|
|
|
|
txid = res.tx_hash
|
|
|
|
assert len(res.tx_key) == 32*2
|
|
|
|
assert res.amount == 1000000000000
|
|
|
|
amount = res.amount
|
|
|
|
assert res.fee > 0
|
|
|
|
fee = res.fee
|
2019-03-19 10:21:06 -06:00
|
|
|
assert len(res.tx_blob) > 0
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res.tx_metadata) == 0
|
|
|
|
assert len(res.multisig_txset) == 0
|
|
|
|
assert len(res.unsigned_txset) == 0
|
2019-03-19 10:21:06 -06:00
|
|
|
tx_blob = res.tx_blob
|
|
|
|
|
|
|
|
res = daemon.send_raw_transaction(tx_blob)
|
|
|
|
assert res.not_relayed == False
|
|
|
|
assert res.low_mixin == False
|
|
|
|
assert res.double_spend == False
|
|
|
|
assert res.invalid_input == False
|
|
|
|
assert res.invalid_output == False
|
|
|
|
assert res.too_big == False
|
|
|
|
assert res.overspend == False
|
|
|
|
assert res.fee_too_low == False
|
2019-03-16 08:24:43 -06:00
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
self.wallet[0].refresh()
|
|
|
|
|
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
assert res.balance == running_balances[0]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 59
|
2019-03-16 08:24:43 -06:00
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
self.wallet[1].refresh()
|
|
|
|
|
|
|
|
res = self.wallet[1].get_transfers()
|
2019-03-16 08:24:43 -06:00
|
|
|
assert not 'in' in res or len(res['in']) == 0
|
|
|
|
assert not 'out' in res or len(res.out) == 0
|
|
|
|
assert not 'pending' in res or len(res.pending) == 0
|
|
|
|
assert len(res.pool) == 1
|
|
|
|
assert not 'failed' in res or len(res.failed) == 0
|
|
|
|
e = res.pool[0]
|
|
|
|
assert e.txid == txid
|
2019-06-17 09:39:29 -06:00
|
|
|
assert e.payment_id in ["", "0000000000000000"] # long payment IDs are now ignored
|
2019-03-16 08:24:43 -06:00
|
|
|
assert e.type == 'pool'
|
|
|
|
assert e.unlock_time == 0
|
|
|
|
assert e.subaddr_index.major == 0
|
|
|
|
assert e.subaddr_indices == [{'major': 0, 'minor': 0}]
|
|
|
|
assert e.address == '44Kbx4sJ7JDRDV5aAhLJzQCjDz2ViLRduE3ijDZu3osWKBjMGkV1XPk4pfDUMqt1Aiezvephdqm6YD19GKFD9ZcXVUTp6BW'
|
|
|
|
assert e.double_spend_seen == False
|
2019-12-04 14:19:04 -07:00
|
|
|
assert not 'confirmations' in e or e.confirmations == 0
|
2019-03-16 08:24:43 -06:00
|
|
|
assert e.amount == amount
|
|
|
|
assert e.fee == fee
|
|
|
|
|
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 1)
|
2019-03-22 05:33:42 -06:00
|
|
|
res = daemon.getlastblockheader()
|
|
|
|
running_balances[0] -= 1000000000000 + fee
|
|
|
|
running_balances[0] += res.block_header.reward
|
|
|
|
self.wallet[1].refresh()
|
|
|
|
running_balances[1] += 1000000000000
|
2019-03-16 08:24:43 -06:00
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[1].get_transfers()
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res['in']) == 1
|
|
|
|
assert not 'out' in res or len(res.out) == 0
|
|
|
|
assert not 'pending' in res or len(res.pending) == 0
|
|
|
|
assert not 'pool' in res or len(res.pool) == 0
|
|
|
|
assert not 'failed' in res or len(res.failed) == 0
|
|
|
|
e = res['in'][0]
|
|
|
|
assert e.txid == txid
|
2019-06-17 09:39:29 -06:00
|
|
|
assert e.payment_id in ["", "0000000000000000"] # long payment IDs are now ignored
|
2019-03-16 08:24:43 -06:00
|
|
|
assert e.type == 'in'
|
|
|
|
assert e.unlock_time == 0
|
|
|
|
assert e.subaddr_index.major == 0
|
|
|
|
assert e.subaddr_indices == [{'major': 0, 'minor': 0}]
|
|
|
|
assert e.address == '44Kbx4sJ7JDRDV5aAhLJzQCjDz2ViLRduE3ijDZu3osWKBjMGkV1XPk4pfDUMqt1Aiezvephdqm6YD19GKFD9ZcXVUTp6BW'
|
|
|
|
assert e.double_spend_seen == False
|
|
|
|
assert e.confirmations == 1
|
|
|
|
assert e.amount == amount
|
|
|
|
assert e.fee == fee
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[1].get_balance()
|
|
|
|
assert res.balance == running_balances[1]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 9
|
|
|
|
|
2019-05-29 05:45:25 -06:00
|
|
|
print('Creating multi out transfer')
|
2019-03-16 08:24:43 -06:00
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
self.wallet[0].refresh()
|
2019-03-16 08:24:43 -06:00
|
|
|
|
|
|
|
dst0 = {'address': '42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 'amount': 1000000000000}
|
|
|
|
dst1 = {'address': '44Kbx4sJ7JDRDV5aAhLJzQCjDz2ViLRduE3ijDZu3osWKBjMGkV1XPk4pfDUMqt1Aiezvephdqm6YD19GKFD9ZcXVUTp6BW', 'amount': 1100000000000}
|
|
|
|
dst2 = {'address': '46r4nYSevkfBUMhuykdK3gQ98XDqDTYW1hNLaXNvjpsJaSbNtdXh1sKMsdVgqkaihChAzEy29zEDPMR3NHQvGoZCLGwTerK', 'amount': 1200000000000}
|
2019-06-18 03:28:27 -06:00
|
|
|
res = self.wallet[0].transfer([dst0, dst1, dst2], ring_size = 11, get_tx_key = True)
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res.tx_hash) == 32*2
|
|
|
|
txid = res.tx_hash
|
|
|
|
assert len(res.tx_key) == 32*2
|
|
|
|
assert res.amount == 1000000000000 + 1100000000000 + 1200000000000
|
|
|
|
amount = res.amount
|
|
|
|
assert res.fee > 0
|
|
|
|
fee = res.fee
|
|
|
|
assert len(res.tx_blob) == 0
|
|
|
|
assert len(res.tx_metadata) == 0
|
|
|
|
assert len(res.multisig_txset) == 0
|
|
|
|
assert len(res.unsigned_txset) == 0
|
|
|
|
unsigned_txset = res.unsigned_txset
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
running_balances[0] -= 1000000000000 + 1100000000000 + 1200000000000 + fee
|
2019-03-16 08:24:43 -06:00
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
assert res.balance == running_balances[0]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 59
|
|
|
|
|
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 1)
|
|
|
|
res = daemon.getlastblockheader()
|
|
|
|
running_balances[0] += res.block_header.reward
|
|
|
|
running_balances[0] += 1000000000000
|
|
|
|
running_balances[1] += 1100000000000
|
|
|
|
running_balances[2] += 1200000000000
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
|
|
|
|
res = self.wallet[0].get_transfers()
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res['in']) == height + 2
|
|
|
|
assert len(res.out) == 3
|
|
|
|
assert not 'pending' in res or len(res.pending) == 0
|
|
|
|
assert not 'pool' in res or len(res.pool) == 1
|
|
|
|
assert not 'failed' in res or len(res.failed) == 0
|
|
|
|
e = [o for o in res.out if o.txid == txid]
|
|
|
|
assert len(e) == 1
|
|
|
|
e = e[0]
|
|
|
|
assert e.txid == txid
|
2019-06-18 03:28:27 -06:00
|
|
|
assert e.payment_id in ["", "0000000000000000"] # long payment IDs are now ignored
|
2019-03-16 08:24:43 -06:00
|
|
|
assert e.type == 'out'
|
|
|
|
assert e.unlock_time == 0
|
|
|
|
assert e.subaddr_index.major == 0
|
|
|
|
assert e.subaddr_indices == [{'major': 0, 'minor': 0}]
|
|
|
|
assert e.address == '42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm'
|
|
|
|
assert e.double_spend_seen == False
|
|
|
|
assert e.confirmations == 1
|
|
|
|
|
|
|
|
assert e.amount == amount
|
|
|
|
assert e.fee == fee
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
assert res.balance == running_balances[0]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 59
|
|
|
|
|
|
|
|
self.wallet[1].refresh()
|
|
|
|
res = self.wallet[1].get_transfers()
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res['in']) == 2
|
|
|
|
assert not 'out' in res or len(res.out) == 0
|
|
|
|
assert not 'pending' in res or len(res.pending) == 0
|
|
|
|
assert not 'pool' in res or len(res.pool) == 0
|
|
|
|
assert not 'failed' in res or len(res.failed) == 0
|
|
|
|
e = [o for o in res['in'] if o.txid == txid]
|
|
|
|
assert len(e) == 1
|
|
|
|
e = e[0]
|
|
|
|
assert e.txid == txid
|
2019-06-17 09:39:29 -06:00
|
|
|
assert e.payment_id in ["", "0000000000000000"] # long payment IDs are now ignored
|
2019-03-16 08:24:43 -06:00
|
|
|
assert e.type == 'in'
|
|
|
|
assert e.unlock_time == 0
|
|
|
|
assert e.subaddr_index.major == 0
|
|
|
|
assert e.subaddr_indices == [{'major': 0, 'minor': 0}]
|
|
|
|
assert e.address == '44Kbx4sJ7JDRDV5aAhLJzQCjDz2ViLRduE3ijDZu3osWKBjMGkV1XPk4pfDUMqt1Aiezvephdqm6YD19GKFD9ZcXVUTp6BW'
|
|
|
|
assert e.double_spend_seen == False
|
|
|
|
assert e.confirmations == 1
|
|
|
|
assert e.amount == 1100000000000
|
|
|
|
assert e.fee == fee
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[1].get_balance()
|
|
|
|
assert res.balance == running_balances[1]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 9
|
|
|
|
|
|
|
|
self.wallet[2].refresh()
|
|
|
|
res = self.wallet[2].get_transfers()
|
2019-03-16 08:24:43 -06:00
|
|
|
assert len(res['in']) == 1
|
|
|
|
assert not 'out' in res or len(res.out) == 0
|
|
|
|
assert not 'pending' in res or len(res.pending) == 0
|
|
|
|
assert not 'pool' in res or len(res.pool) == 0
|
|
|
|
assert not 'failed' in res or len(res.failed) == 0
|
|
|
|
e = [o for o in res['in'] if o.txid == txid]
|
|
|
|
assert len(e) == 1
|
|
|
|
e = e[0]
|
|
|
|
assert e.txid == txid
|
2019-06-17 09:39:29 -06:00
|
|
|
assert e.payment_id in ["", "0000000000000000"] # long payment IDs are now ignored
|
2019-03-16 08:24:43 -06:00
|
|
|
assert e.type == 'in'
|
|
|
|
assert e.unlock_time == 0
|
|
|
|
assert e.subaddr_index.major == 0
|
|
|
|
assert e.subaddr_indices == [{'major': 0, 'minor': 0}]
|
|
|
|
assert e.address == '46r4nYSevkfBUMhuykdK3gQ98XDqDTYW1hNLaXNvjpsJaSbNtdXh1sKMsdVgqkaihChAzEy29zEDPMR3NHQvGoZCLGwTerK'
|
|
|
|
assert e.double_spend_seen == False
|
|
|
|
assert e.confirmations == 1
|
|
|
|
assert e.amount == 1200000000000
|
|
|
|
assert e.fee == fee
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[2].get_balance()
|
|
|
|
assert res.balance == running_balances[2]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 9
|
|
|
|
|
2019-03-19 10:21:06 -06:00
|
|
|
print('Sending to integrated address')
|
2019-03-22 05:33:42 -06:00
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].get_balance()
|
2019-03-19 10:21:06 -06:00
|
|
|
i_pid = '1111111122222222'
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[0].make_integrated_address(standard_address = '44Kbx4sJ7JDRDV5aAhLJzQCjDz2ViLRduE3ijDZu3osWKBjMGkV1XPk4pfDUMqt1Aiezvephdqm6YD19GKFD9ZcXVUTp6BW', payment_id = i_pid)
|
2019-03-19 10:21:06 -06:00
|
|
|
i_address = res.integrated_address
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[0].transfer([{'address': i_address, 'amount': 200000000}])
|
2019-03-19 10:21:06 -06:00
|
|
|
assert len(res.tx_hash) == 32*2
|
|
|
|
i_txid = res.tx_hash
|
|
|
|
assert len(res.tx_key) == 32*2
|
|
|
|
assert res.amount == 200000000
|
|
|
|
i_amount = res.amount
|
|
|
|
assert res.fee > 0
|
|
|
|
fee = res.fee
|
|
|
|
assert len(res.tx_blob) == 0
|
|
|
|
assert len(res.tx_metadata) == 0
|
|
|
|
assert len(res.multisig_txset) == 0
|
|
|
|
assert len(res.unsigned_txset) == 0
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
running_balances[0] -= 200000000 + fee
|
|
|
|
|
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
assert res.balance == running_balances[0]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 59
|
|
|
|
|
2019-03-19 10:21:06 -06:00
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 1)
|
2019-03-22 05:33:42 -06:00
|
|
|
res = daemon.getlastblockheader()
|
|
|
|
running_balances[0] += res.block_header.reward
|
|
|
|
running_balances[1] += 200000000
|
|
|
|
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
assert res.balance == running_balances[0]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 59
|
|
|
|
|
|
|
|
self.wallet[1].refresh()
|
|
|
|
res = self.wallet[1].get_balance()
|
|
|
|
assert res.balance == running_balances[1]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 9
|
|
|
|
|
|
|
|
self.wallet[2].refresh()
|
|
|
|
res = self.wallet[2].get_balance()
|
|
|
|
assert res.balance == running_balances[2]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 8
|
|
|
|
|
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 1)
|
|
|
|
res = daemon.getlastblockheader()
|
|
|
|
running_balances[0] += res.block_header.reward
|
|
|
|
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
assert res.balance == running_balances[0]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 59
|
|
|
|
|
|
|
|
self.wallet[1].refresh()
|
|
|
|
res = self.wallet[1].get_balance()
|
|
|
|
assert res.balance == running_balances[1]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 8
|
|
|
|
|
|
|
|
self.wallet[2].refresh()
|
|
|
|
res = self.wallet[2].get_balance()
|
|
|
|
assert res.balance == running_balances[2]
|
|
|
|
assert res.unlocked_balance <= res.balance
|
|
|
|
assert res.blocks_to_unlock == 7
|
2019-03-19 10:21:06 -06:00
|
|
|
|
|
|
|
|
2019-03-19 07:20:42 -06:00
|
|
|
def check_get_bulk_payments(self):
|
|
|
|
print('Checking get_bulk_payments')
|
|
|
|
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-03-19 07:20:42 -06:00
|
|
|
res = daemon.get_info()
|
|
|
|
height = res.height
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].get_bulk_payments()
|
2019-03-19 07:20:42 -06:00
|
|
|
assert len(res.payments) >= 83 # at least 83 coinbases
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[0].get_bulk_payments(payment_ids = ['1234500000012345abcde00000abcdeff1234500000012345abcde00000abcde'])
|
2019-03-19 07:20:42 -06:00
|
|
|
assert 'payments' not in res or len(res.payments) == 0
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[0].get_bulk_payments(min_block_height = height)
|
2019-03-19 07:20:42 -06:00
|
|
|
assert 'payments' not in res or len(res.payments) == 0
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[0].get_bulk_payments(min_block_height = height - 40)
|
2019-03-19 07:20:42 -06:00
|
|
|
assert len(res.payments) >= 39 # coinbases
|
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
self.wallet[1].refresh()
|
|
|
|
res = self.wallet[1].get_bulk_payments()
|
2019-03-19 10:21:06 -06:00
|
|
|
assert len(res.payments) >= 3 # two txes to standard address were sent, plus one to integrated address
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[1].get_bulk_payments(payment_ids = ['1234500000012345abcde00000abcdeff1234500000012345abcde00000abcde'])
|
2019-06-17 09:39:29 -06:00
|
|
|
assert not 'payments' in res or len(res.payments) == 0 # long payment IDs are now ignored on receipt
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[1].get_bulk_payments(payment_ids = ['ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'])
|
2019-03-19 07:20:42 -06:00
|
|
|
assert 'payments' not in res or len(res.payments) == 0 # none with that payment id
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[1].get_bulk_payments(payment_ids = ['1111111122222222' + '0'*48])
|
2019-03-19 10:21:06 -06:00
|
|
|
assert len(res.payments) >= 1 # one tx to integrated address
|
2019-03-19 07:20:42 -06:00
|
|
|
|
2019-03-22 05:33:42 -06:00
|
|
|
self.wallet[2].refresh()
|
|
|
|
res = self.wallet[2].get_bulk_payments()
|
2019-03-19 07:20:42 -06:00
|
|
|
assert len(res.payments) >= 1 # one tx was sent
|
2019-03-22 05:33:42 -06:00
|
|
|
res = self.wallet[2].get_bulk_payments(payment_ids = ['1'*64, '1234500000012345abcde00000abcdeff1234500000012345abcde00000abcde', '2'*64])
|
2019-06-17 09:39:29 -06:00
|
|
|
assert not 'payments' in res or len(res.payments) == 0 # long payment IDs are now ignored
|
2019-03-19 07:20:42 -06:00
|
|
|
|
2019-07-09 08:39:10 -06:00
|
|
|
res = self.wallet[1].get_bulk_payments(["1111111122222222"])
|
|
|
|
assert len(res.payments) >= 1 # we have one of these
|
|
|
|
|
2019-04-29 13:23:42 -06:00
|
|
|
def check_get_payments(self):
|
|
|
|
print('Checking get_payments')
|
|
|
|
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-04-29 13:23:42 -06:00
|
|
|
res = daemon.get_info()
|
|
|
|
height = res.height
|
|
|
|
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
self.wallet[1].refresh()
|
|
|
|
|
|
|
|
res = self.wallet[0].get_payments('1234500000012345abcde00000abcdeff1234500000012345abcde00000abcde')
|
|
|
|
assert 'payments' not in res or len(res.payments) == 0
|
|
|
|
|
|
|
|
res = self.wallet[1].get_payments('1234500000012345abcde00000abcdeff1234500000012345abcde00000abcde')
|
2019-10-15 14:11:11 -06:00
|
|
|
assert 'payments' not in res or len(res.payments) == 0
|
2019-04-29 13:23:42 -06:00
|
|
|
|
|
|
|
res = self.wallet[1].get_payments('ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff')
|
|
|
|
assert 'payments' not in res or len(res.payments) == 0
|
|
|
|
|
|
|
|
res = self.wallet[1].get_payments(payment_id = '1111111122222222' + '0'*48)
|
|
|
|
assert len(res.payments) >= 1 # one tx to integrated address
|
|
|
|
|
2019-03-25 14:49:09 -06:00
|
|
|
def check_double_spend_detection(self):
|
|
|
|
print('Checking double spend detection')
|
|
|
|
txes = [[None, None], [None, None]]
|
|
|
|
for i in range(2):
|
|
|
|
self.wallet[0].restore_deterministic_wallet(seed = 'velvet lymph giddy number token physics poetry unquoted nibs useful sabotage limits benches lifestyle eden nitrogen anvil fewest avoid batch vials washing fences goat unquoted')
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
unlocked_balance = res.unlocked_balance
|
|
|
|
res = self.wallet[0].sweep_all(address = '44Kbx4sJ7JDRDV5aAhLJzQCjDz2ViLRduE3ijDZu3osWKBjMGkV1XPk4pfDUMqt1Aiezvephdqm6YD19GKFD9ZcXVUTp6BW', do_not_relay = True, get_tx_hex = True)
|
|
|
|
assert len(res.tx_hash_list) == 1
|
|
|
|
assert len(res.tx_hash_list[0]) == 32*2
|
|
|
|
txes[i][0] = res.tx_hash_list[0]
|
|
|
|
assert len(res.fee_list) == 1
|
|
|
|
assert res.fee_list[0] > 0
|
|
|
|
assert len(res.amount_list) == 1
|
|
|
|
assert res.amount_list[0] == unlocked_balance - res.fee_list[0]
|
|
|
|
assert len(res.tx_blob_list) > 0
|
|
|
|
assert len(res.tx_blob_list[0]) > 0
|
|
|
|
assert not 'tx_metadata_list' in res or len(res.tx_metadata_list) == 0
|
|
|
|
assert not 'multisig_txset' in res or len(res.multisig_txset) == 0
|
|
|
|
assert not 'unsigned_txset' in res or len(res.unsigned_txset) == 0
|
|
|
|
assert len(res.tx_blob_list) == 1
|
|
|
|
txes[i][1] = res.tx_blob_list[0]
|
|
|
|
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-03-25 14:49:09 -06:00
|
|
|
res = daemon.send_raw_transaction(txes[0][1])
|
|
|
|
assert res.not_relayed == False
|
|
|
|
assert res.low_mixin == False
|
|
|
|
assert res.double_spend == False
|
|
|
|
assert res.invalid_input == False
|
|
|
|
assert res.invalid_output == False
|
|
|
|
assert res.too_big == False
|
|
|
|
assert res.overspend == False
|
|
|
|
assert res.fee_too_low == False
|
|
|
|
|
|
|
|
res = daemon.get_transactions([txes[0][0]])
|
|
|
|
assert len(res.txs) >= 1
|
|
|
|
tx = [tx for tx in res.txs if tx.tx_hash == txes[0][0]][0]
|
|
|
|
assert tx.in_pool
|
|
|
|
assert not tx.double_spend_seen
|
|
|
|
|
|
|
|
res = daemon.send_raw_transaction(txes[1][1])
|
|
|
|
assert res.not_relayed == False
|
|
|
|
assert res.low_mixin == False
|
|
|
|
assert res.double_spend == True
|
|
|
|
assert res.invalid_input == False
|
|
|
|
assert res.invalid_output == False
|
|
|
|
assert res.too_big == False
|
|
|
|
assert res.overspend == False
|
|
|
|
assert res.fee_too_low == False
|
2019-04-23 15:56:04 -06:00
|
|
|
assert res.too_few_outputs == False
|
2019-03-25 14:49:09 -06:00
|
|
|
|
|
|
|
res = daemon.get_transactions([txes[0][0]])
|
|
|
|
assert len(res.txs) >= 1
|
|
|
|
tx = [tx for tx in res.txs if tx.tx_hash == txes[0][0]][0]
|
|
|
|
assert tx.in_pool
|
|
|
|
assert tx.double_spend_seen
|
|
|
|
|
2019-04-29 13:09:13 -06:00
|
|
|
def sweep_dust(self):
|
|
|
|
print("Sweeping dust")
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-04-29 13:09:13 -06:00
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].sweep_dust()
|
|
|
|
assert not 'tx_hash_list' in res or len(res.tx_hash_list) == 0 # there's just one, but it cannot meet the fee
|
|
|
|
|
2019-04-13 17:39:12 -06:00
|
|
|
def sweep_single(self):
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-04-13 17:39:12 -06:00
|
|
|
|
|
|
|
print("Sending single output")
|
|
|
|
|
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 1)
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'available')
|
|
|
|
for t in res.transfers:
|
|
|
|
assert not t.spent
|
|
|
|
assert len(res.transfers) > 8 # we mined a lot
|
|
|
|
index = 8
|
|
|
|
assert not res.transfers[index].spent
|
|
|
|
assert res.transfers[index].amount > 0
|
|
|
|
ki = res.transfers[index].key_image
|
|
|
|
amount = res.transfers[index].amount
|
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 10) # ensure unlocked
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
balance = res.balance
|
2019-05-09 09:39:30 -06:00
|
|
|
res = daemon.is_key_image_spent([ki])
|
|
|
|
assert len(res.spent_status) == 1
|
|
|
|
assert res.spent_status[0] == 0
|
2019-04-13 17:39:12 -06:00
|
|
|
res = self.wallet[0].sweep_single('44Kbx4sJ7JDRDV5aAhLJzQCjDz2ViLRduE3ijDZu3osWKBjMGkV1XPk4pfDUMqt1Aiezvephdqm6YD19GKFD9ZcXVUTp6BW', key_image = ki)
|
|
|
|
assert len(res.tx_hash) == 64
|
|
|
|
tx_hash = res.tx_hash
|
2019-05-09 09:39:30 -06:00
|
|
|
res = daemon.is_key_image_spent([ki])
|
|
|
|
assert len(res.spent_status) == 1
|
|
|
|
assert res.spent_status[0] == 2
|
2019-04-13 17:39:12 -06:00
|
|
|
daemon.generateblocks('44Kbx4sJ7JDRDV5aAhLJzQCjDz2ViLRduE3ijDZu3osWKBjMGkV1XPk4pfDUMqt1Aiezvephdqm6YD19GKFD9ZcXVUTp6BW', 1)
|
2019-05-09 09:39:30 -06:00
|
|
|
res = daemon.is_key_image_spent([ki])
|
|
|
|
assert len(res.spent_status) == 1
|
|
|
|
assert res.spent_status[0] == 1
|
2019-04-13 17:39:12 -06:00
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].get_balance()
|
|
|
|
new_balance = res.balance
|
|
|
|
res = daemon.get_transactions([tx_hash], decode_as_json = True)
|
|
|
|
assert len(res.txs) == 1
|
|
|
|
tx = res.txs[0]
|
|
|
|
assert tx.tx_hash == tx_hash
|
|
|
|
assert not tx.in_pool
|
|
|
|
assert len(tx.as_json) > 0
|
|
|
|
try:
|
|
|
|
j = json.loads(tx.as_json)
|
|
|
|
except:
|
|
|
|
j = None
|
|
|
|
assert j
|
|
|
|
assert new_balance == balance - amount
|
|
|
|
assert len(j['vin']) == 1
|
|
|
|
assert j['vin'][0]['key']['k_image'] == ki
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'available')
|
|
|
|
assert len([t for t in res.transfers if t.key_image == ki]) == 0
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'unavailable')
|
|
|
|
assert len([t for t in res.transfers if t.key_image == ki]) == 1
|
|
|
|
|
2019-05-02 03:03:54 -06:00
|
|
|
def check_destinations(self):
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-05-02 03:03:54 -06:00
|
|
|
|
|
|
|
print("Checking transaction destinations")
|
|
|
|
|
|
|
|
dst = {'address': '42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 'amount': 1000000000000}
|
|
|
|
res = self.wallet[0].transfer([dst])
|
|
|
|
assert len(res.tx_hash) == 64
|
|
|
|
tx_hash = res.tx_hash
|
|
|
|
for i in range(2):
|
|
|
|
res = self.wallet[0].get_transfers(pending = True, out = True)
|
|
|
|
l = [x for x in (res.pending if i == 0 else res.out) if x.txid == tx_hash]
|
|
|
|
assert len(l) == 1
|
|
|
|
e = l[0]
|
|
|
|
assert len(e.destinations) == 1
|
|
|
|
assert e.destinations[0].amount == 1000000000000
|
|
|
|
assert e.destinations[0].address == '42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm'
|
|
|
|
|
|
|
|
if i == 0:
|
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 1)
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
|
|
|
|
dst = {'address': '8AsN91rznfkBGTY8psSNkJBg9SZgxxGGRUhGwRptBhgr5XSQ1XzmA9m8QAnoxydecSh5aLJXdrgXwTDMMZ1AuXsN1EX5Mtm', 'amount': 1000000000000}
|
|
|
|
res = self.wallet[0].transfer([dst])
|
|
|
|
assert len(res.tx_hash) == 64
|
|
|
|
tx_hash = res.tx_hash
|
|
|
|
for i in range(2):
|
|
|
|
res = self.wallet[0].get_transfers(pending = True, out = True)
|
|
|
|
l = [x for x in (res.pending if i == 0 else res.out) if x.txid == tx_hash]
|
|
|
|
assert len(l) == 1
|
|
|
|
e = l[0]
|
|
|
|
assert len(e.destinations) == 1
|
|
|
|
assert e.destinations[0].amount == 1000000000000
|
|
|
|
assert e.destinations[0].address == '8AsN91rznfkBGTY8psSNkJBg9SZgxxGGRUhGwRptBhgr5XSQ1XzmA9m8QAnoxydecSh5aLJXdrgXwTDMMZ1AuXsN1EX5Mtm'
|
|
|
|
|
|
|
|
if i == 0:
|
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 1)
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
|
|
|
|
dst = {'address': '4BxSHvcgTwu25WooY4BVmgdcKwZu5EksVZSZkDd6ooxSVVqQ4ubxXkhLF6hEqtw96i9cf3cVfLw8UWe95bdDKfRQeYtPwLm1Jiw7AKt2LY', 'amount': 1000000000000}
|
|
|
|
res = self.wallet[0].transfer([dst])
|
|
|
|
assert len(res.tx_hash) == 64
|
|
|
|
tx_hash = res.tx_hash
|
|
|
|
for i in range(2):
|
|
|
|
res = self.wallet[0].get_transfers(pending = True, out = True)
|
|
|
|
l = [x for x in (res.pending if i == 0 else res.out) if x.txid == tx_hash]
|
|
|
|
assert len(l) == 1
|
|
|
|
e = l[0]
|
|
|
|
assert len(e.destinations) == 1
|
|
|
|
assert e.destinations[0].amount == 1000000000000
|
|
|
|
assert e.destinations[0].address == '4BxSHvcgTwu25WooY4BVmgdcKwZu5EksVZSZkDd6ooxSVVqQ4ubxXkhLF6hEqtw96i9cf3cVfLw8UWe95bdDKfRQeYtPwLm1Jiw7AKt2LY'
|
|
|
|
|
|
|
|
if i == 0:
|
|
|
|
daemon.generateblocks('42ey1afDFnn4886T7196doS9GPMzexD9gXpsZJDwVjeRVdFCSoHnv7KPbBeGpzJBzHRCAs9UxqeoyFQMYbqSWYTfJJQAWDm', 1)
|
|
|
|
self.wallet[0].refresh()
|
|
|
|
|
2019-05-02 06:31:08 -06:00
|
|
|
def check_tx_notes(self):
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-05-02 06:31:08 -06:00
|
|
|
|
|
|
|
print('Testing tx notes')
|
|
|
|
res = self.wallet[0].get_transfers()
|
|
|
|
assert len(res['in']) > 0
|
|
|
|
in_txid = res['in'][0].txid
|
|
|
|
assert len(res['out']) > 0
|
|
|
|
out_txid = res['out'][0].txid
|
|
|
|
res = self.wallet[0].get_tx_notes([in_txid, out_txid])
|
|
|
|
assert res.notes == ['', '']
|
|
|
|
res = self.wallet[0].set_tx_notes([in_txid, out_txid], ['in txid', 'out txid'])
|
|
|
|
res = self.wallet[0].get_tx_notes([in_txid, out_txid])
|
|
|
|
assert res.notes == ['in txid', 'out txid']
|
|
|
|
res = self.wallet[0].get_tx_notes([out_txid, in_txid])
|
|
|
|
assert res.notes == ['out txid', 'in txid']
|
|
|
|
|
2019-05-02 05:04:43 -06:00
|
|
|
def check_rescan(self):
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-05-02 03:03:54 -06:00
|
|
|
|
2019-05-02 05:04:43 -06:00
|
|
|
print('Testing rescan_spent')
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'all')
|
|
|
|
transfers = res.transfers
|
|
|
|
res = self.wallet[0].rescan_spent()
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'all')
|
|
|
|
assert transfers == res.transfers
|
|
|
|
|
|
|
|
for hard in [False, True]:
|
|
|
|
print('Testing %s rescan_blockchain' % ('hard' if hard else 'soft'))
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'all')
|
|
|
|
transfers = res.transfers
|
|
|
|
res = self.wallet[0].get_transfers()
|
|
|
|
t_in = res['in']
|
|
|
|
t_out = res.out
|
|
|
|
res = self.wallet[0].rescan_blockchain(hard = hard)
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'all')
|
|
|
|
assert transfers == res.transfers
|
|
|
|
res = self.wallet[0].get_transfers()
|
|
|
|
assert t_in == res['in']
|
|
|
|
# some information can not be recovered for out txes
|
|
|
|
unrecoverable_fields = ['payment_id', 'destinations', 'note']
|
|
|
|
old_t_out = []
|
|
|
|
for x in t_out:
|
|
|
|
e = {}
|
|
|
|
for k in x.keys():
|
|
|
|
if not k in unrecoverable_fields:
|
|
|
|
e[k] = x[k]
|
|
|
|
old_t_out.append(e)
|
|
|
|
new_t_out = []
|
|
|
|
for x in res.out:
|
|
|
|
e = {}
|
|
|
|
for k in x.keys():
|
|
|
|
if not k in unrecoverable_fields:
|
|
|
|
e[k] = x[k]
|
|
|
|
new_t_out.append(e)
|
2019-05-29 05:45:25 -06:00
|
|
|
assert sorted(old_t_out, key = lambda k: k['txid']) == sorted(new_t_out, key = lambda k: k['txid'])
|
2019-05-02 03:03:54 -06:00
|
|
|
|
2019-05-09 09:39:30 -06:00
|
|
|
def check_is_key_image_spent(self):
|
2020-04-24 16:30:23 -06:00
|
|
|
daemon = Daemon()
|
2019-05-09 09:39:30 -06:00
|
|
|
|
|
|
|
print('Testing is_key_image_spent')
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'all')
|
|
|
|
transfers = res.transfers
|
|
|
|
ki = [x.key_image for x in transfers]
|
|
|
|
expected = [1 if x.spent else 0 for x in transfers]
|
|
|
|
res = daemon.is_key_image_spent(ki)
|
|
|
|
assert res.spent_status == expected
|
|
|
|
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'available')
|
|
|
|
transfers = res.transfers
|
|
|
|
ki = [x.key_image for x in transfers]
|
|
|
|
expected = [0 for x in transfers]
|
|
|
|
res = daemon.is_key_image_spent(ki)
|
|
|
|
assert res.spent_status == expected
|
|
|
|
|
|
|
|
res = self.wallet[0].incoming_transfers(transfer_type = 'unavailable')
|
|
|
|
transfers = res.transfers
|
|
|
|
ki = [x.key_image for x in transfers]
|
|
|
|
expected = [1 for x in transfers]
|
|
|
|
res = daemon.is_key_image_spent(ki)
|
|
|
|
assert res.spent_status == expected
|
|
|
|
|
|
|
|
ki = [ki[-1]] * 5
|
|
|
|
expected = [1] * len(ki)
|
|
|
|
res = daemon.is_key_image_spent(ki)
|
|
|
|
assert res.spent_status == expected
|
|
|
|
|
|
|
|
ki = ['2'*64, '1'*64]
|
|
|
|
expected = [0, 0]
|
|
|
|
res = daemon.is_key_image_spent(ki)
|
|
|
|
assert res.spent_status == expected
|
|
|
|
|
2019-03-25 14:49:09 -06:00
|
|
|
|
2019-03-16 08:24:43 -06:00
|
|
|
if __name__ == '__main__':
|
|
|
|
TransferTest().run_test()
|