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.
123 lines
5.1 KiB
123 lines
5.1 KiB
8 years ago
|
#!/usr/bin/env python3
|
||
7 years ago
|
# Copyright (c) 2016-2017 The Bitcoin Core developers
|
||
8 years ago
|
# Distributed under the MIT software license, see the accompanying
|
||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
8 years ago
|
"""Test Hierarchical Deterministic wallet function."""
|
||
8 years ago
|
|
||
|
from test_framework.test_framework import BitcoinTestFramework
|
||
|
from test_framework.util import (
|
||
|
assert_equal,
|
||
|
connect_nodes_bi,
|
||
|
)
|
||
|
import shutil
|
||
7 years ago
|
import os
|
||
8 years ago
|
|
||
|
class WalletHDTest(BitcoinTestFramework):
|
||
8 years ago
|
def set_test_params(self):
|
||
8 years ago
|
self.setup_clean_chain = True
|
||
|
self.num_nodes = 2
|
||
7 years ago
|
self.extra_args = [[], ['-keypool=0']]
|
||
8 years ago
|
|
||
|
def run_test (self):
|
||
|
tmpdir = self.options.tmpdir
|
||
|
|
||
7 years ago
|
# Make sure can't switch off usehd after wallet creation
|
||
|
self.stop_node(1)
|
||
|
self.assert_start_raises_init_error(1, ['-usehd=0'], 'already existing HD wallet')
|
||
|
self.start_node(1)
|
||
|
connect_nodes_bi(self.nodes, 0, 1)
|
||
|
|
||
8 years ago
|
# Make sure we use hd, keep masterkeyid
|
||
8 years ago
|
masterkeyid = self.nodes[1].getwalletinfo()['hdmasterkeyid']
|
||
8 years ago
|
assert_equal(len(masterkeyid), 40)
|
||
|
|
||
8 years ago
|
# create an internal key
|
||
8 years ago
|
change_addr = self.nodes[1].getrawchangeaddress()
|
||
8 years ago
|
change_addrV= self.nodes[1].validateaddress(change_addr)
|
||
8 years ago
|
assert_equal(change_addrV["hdkeypath"], "m/0'/1'/0'") #first internal child key
|
||
|
|
||
8 years ago
|
# Import a non-HD private key in the HD wallet
|
||
|
non_hd_add = self.nodes[0].getnewaddress()
|
||
|
self.nodes[1].importprivkey(self.nodes[0].dumpprivkey(non_hd_add))
|
||
|
|
||
7 years ago
|
# This should be enough to keep the master key and the non-HD key
|
||
8 years ago
|
self.nodes[1].backupwallet(tmpdir + "/hd.bak")
|
||
|
#self.nodes[1].dumpwallet(tmpdir + "/hd.dump")
|
||
8 years ago
|
|
||
|
# Derive some HD addresses and remember the last
|
||
|
# Also send funds to each add
|
||
|
self.nodes[0].generate(101)
|
||
|
hd_add = None
|
||
|
num_hd_adds = 300
|
||
8 years ago
|
for i in range(num_hd_adds):
|
||
8 years ago
|
hd_add = self.nodes[1].getnewaddress()
|
||
8 years ago
|
hd_info = self.nodes[1].validateaddress(hd_add)
|
||
7 years ago
|
assert_equal(hd_info["hdkeypath"], "m/0'/0'/"+str(i)+"'")
|
||
8 years ago
|
assert_equal(hd_info["hdmasterkeyid"], masterkeyid)
|
||
8 years ago
|
self.nodes[0].sendtoaddress(hd_add, 1)
|
||
|
self.nodes[0].generate(1)
|
||
|
self.nodes[0].sendtoaddress(non_hd_add, 1)
|
||
|
self.nodes[0].generate(1)
|
||
|
|
||
8 years ago
|
# create an internal key (again)
|
||
8 years ago
|
change_addr = self.nodes[1].getrawchangeaddress()
|
||
8 years ago
|
change_addrV= self.nodes[1].validateaddress(change_addr)
|
||
8 years ago
|
assert_equal(change_addrV["hdkeypath"], "m/0'/1'/1'") #second internal child key
|
||
|
|
||
8 years ago
|
self.sync_all()
|
||
|
assert_equal(self.nodes[1].getbalance(), num_hd_adds + 1)
|
||
|
|
||
8 years ago
|
self.log.info("Restore backup ...")
|
||
8 years ago
|
self.stop_node(1)
|
||
7 years ago
|
# we need to delete the complete regtest directory
|
||
|
# otherwise node1 would auto-recover all funds in flag the keypool keys as used
|
||
7 years ago
|
shutil.rmtree(os.path.join(tmpdir, "node1/regtest/blocks"))
|
||
|
shutil.rmtree(os.path.join(tmpdir, "node1/regtest/chainstate"))
|
||
7 years ago
|
shutil.copyfile(os.path.join(tmpdir, "hd.bak"), os.path.join(tmpdir, "node1/regtest/wallets/wallet.dat"))
|
||
8 years ago
|
self.start_node(1)
|
||
8 years ago
|
|
||
|
# Assert that derivation is deterministic
|
||
|
hd_add_2 = None
|
||
|
for _ in range(num_hd_adds):
|
||
|
hd_add_2 = self.nodes[1].getnewaddress()
|
||
8 years ago
|
hd_info_2 = self.nodes[1].validateaddress(hd_add_2)
|
||
7 years ago
|
assert_equal(hd_info_2["hdkeypath"], "m/0'/0'/"+str(_)+"'")
|
||
8 years ago
|
assert_equal(hd_info_2["hdmasterkeyid"], masterkeyid)
|
||
8 years ago
|
assert_equal(hd_add, hd_add_2)
|
||
7 years ago
|
connect_nodes_bi(self.nodes, 0, 1)
|
||
|
self.sync_all()
|
||
8 years ago
|
|
||
|
# Needs rescan
|
||
|
self.stop_node(1)
|
||
8 years ago
|
self.start_node(1, extra_args=self.extra_args[1] + ['-rescan'])
|
||
8 years ago
|
assert_equal(self.nodes[1].getbalance(), num_hd_adds + 1)
|
||
|
|
||
7 years ago
|
# Try a RPC based rescan
|
||
|
self.stop_node(1)
|
||
|
shutil.rmtree(os.path.join(tmpdir, "node1/regtest/blocks"))
|
||
|
shutil.rmtree(os.path.join(tmpdir, "node1/regtest/chainstate"))
|
||
|
shutil.copyfile(os.path.join(tmpdir, "hd.bak"), os.path.join(tmpdir, "node1/regtest/wallet.dat"))
|
||
|
self.start_node(1, extra_args=self.extra_args[1])
|
||
|
connect_nodes_bi(self.nodes, 0, 1)
|
||
|
self.sync_all()
|
||
|
out = self.nodes[1].rescanblockchain(0, 1)
|
||
|
assert_equal(out['start_height'], 0)
|
||
|
assert_equal(out['stop_height'], 1)
|
||
|
out = self.nodes[1].rescanblockchain()
|
||
|
assert_equal(out['start_height'], 0)
|
||
|
assert_equal(out['stop_height'], self.nodes[1].getblockcount())
|
||
|
assert_equal(self.nodes[1].getbalance(), num_hd_adds + 1)
|
||
|
|
||
8 years ago
|
# send a tx and make sure its using the internal chain for the changeoutput
|
||
8 years ago
|
txid = self.nodes[1].sendtoaddress(self.nodes[0].getnewaddress(), 1)
|
||
8 years ago
|
outs = self.nodes[1].decoderawtransaction(self.nodes[1].gettransaction(txid)['hex'])['vout']
|
||
8 years ago
|
keypath = ""
|
||
|
for out in outs:
|
||
|
if out['value'] != 1:
|
||
|
keypath = self.nodes[1].validateaddress(out['scriptPubKey']['addresses'][0])['hdkeypath']
|
||
7 years ago
|
|
||
8 years ago
|
assert_equal(keypath[0:7], "m/0'/1'")
|
||
8 years ago
|
|
||
|
if __name__ == '__main__':
|
||
|
WalletHDTest().main ()
|