mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 09:53:47 +01:00
tests: Use descriptors for feature_segwit multisig setup
When setting up the multisig addresses in feature_segwit.py, use descriptors rather than addmultisigaddress.
This commit is contained in:
parent
986003aff9
commit
1d13c44a4c
@ -17,6 +17,7 @@ from test_framework.blocktools import (
|
|||||||
send_to_witness,
|
send_to_witness,
|
||||||
witness_script,
|
witness_script,
|
||||||
)
|
)
|
||||||
|
from test_framework.descriptors import descsum_create
|
||||||
from test_framework.messages import (
|
from test_framework.messages import (
|
||||||
COIN,
|
COIN,
|
||||||
COutPoint,
|
COutPoint,
|
||||||
@ -49,6 +50,9 @@ from test_framework.util import (
|
|||||||
assert_raises_rpc_error,
|
assert_raises_rpc_error,
|
||||||
try_rpc,
|
try_rpc,
|
||||||
)
|
)
|
||||||
|
from test_framework.wallet_util import (
|
||||||
|
get_generate_key,
|
||||||
|
)
|
||||||
|
|
||||||
NODE_0 = 0
|
NODE_0 = 0
|
||||||
NODE_2 = 2
|
NODE_2 = 2
|
||||||
@ -142,13 +146,39 @@ class SegWitTest(BitcoinTestFramework):
|
|||||||
p2sh_ids = [] # p2sh_ids[NODE][TYPE] is an array of txids that spend to P2WPKH (TYPE=0) or P2WSH (TYPE=1) scripts to an address for NODE embedded in p2sh
|
p2sh_ids = [] # p2sh_ids[NODE][TYPE] is an array of txids that spend to P2WPKH (TYPE=0) or P2WSH (TYPE=1) scripts to an address for NODE embedded in p2sh
|
||||||
wit_ids = [] # wit_ids[NODE][TYPE] is an array of txids that spend to P2WPKH (TYPE=0) or P2WSH (TYPE=1) scripts to an address for NODE via bare witness
|
wit_ids = [] # wit_ids[NODE][TYPE] is an array of txids that spend to P2WPKH (TYPE=0) or P2WSH (TYPE=1) scripts to an address for NODE via bare witness
|
||||||
for i in range(3):
|
for i in range(3):
|
||||||
newaddress = self.nodes[i].getnewaddress()
|
key = get_generate_key()
|
||||||
self.pubkey.append(self.nodes[i].getaddressinfo(newaddress)["pubkey"])
|
self.pubkey.append(key.pubkey)
|
||||||
|
|
||||||
multiscript = CScript([OP_1, bytes.fromhex(self.pubkey[-1]), OP_1, OP_CHECKMULTISIG])
|
multiscript = CScript([OP_1, bytes.fromhex(self.pubkey[-1]), OP_1, OP_CHECKMULTISIG])
|
||||||
p2sh_ms_addr = self.nodes[i].addmultisigaddress(1, [self.pubkey[-1]], '', 'p2sh-segwit')['address']
|
p2sh_ms_addr = self.nodes[i].createmultisig(1, [self.pubkey[-1]], 'p2sh-segwit')['address']
|
||||||
bip173_ms_addr = self.nodes[i].addmultisigaddress(1, [self.pubkey[-1]], '', 'bech32')['address']
|
bip173_ms_addr = self.nodes[i].createmultisig(1, [self.pubkey[-1]], 'bech32')['address']
|
||||||
assert_equal(p2sh_ms_addr, script_to_p2sh_p2wsh(multiscript))
|
assert_equal(p2sh_ms_addr, script_to_p2sh_p2wsh(multiscript))
|
||||||
assert_equal(bip173_ms_addr, script_to_p2wsh(multiscript))
|
assert_equal(bip173_ms_addr, script_to_p2wsh(multiscript))
|
||||||
|
|
||||||
|
p2sh_ms_desc = descsum_create(f"sh(wsh(multi(1,{key.privkey})))")
|
||||||
|
bip173_ms_desc = descsum_create(f"wsh(multi(1,{key.privkey}))")
|
||||||
|
assert_equal(self.nodes[i].deriveaddresses(p2sh_ms_desc)[0], p2sh_ms_addr)
|
||||||
|
assert_equal(self.nodes[i].deriveaddresses(bip173_ms_desc)[0], bip173_ms_addr)
|
||||||
|
|
||||||
|
sh_wpkh_desc = descsum_create(f"sh(wpkh({key.privkey}))")
|
||||||
|
wpkh_desc = descsum_create(f"wpkh({key.privkey})")
|
||||||
|
assert_equal(self.nodes[i].deriveaddresses(sh_wpkh_desc)[0], key.p2sh_p2wpkh_addr)
|
||||||
|
assert_equal(self.nodes[i].deriveaddresses(wpkh_desc)[0], key.p2wpkh_addr)
|
||||||
|
|
||||||
|
if self.options.descriptors:
|
||||||
|
res = self.nodes[i].importdescriptors([
|
||||||
|
{"desc": p2sh_ms_desc, "timestamp": "now"},
|
||||||
|
{"desc": bip173_ms_desc, "timestamp": "now"},
|
||||||
|
{"desc": sh_wpkh_desc, "timestamp": "now"},
|
||||||
|
{"desc": wpkh_desc, "timestamp": "now"},
|
||||||
|
])
|
||||||
|
else:
|
||||||
|
# The nature of the legacy wallet is that this import results in also adding all of the necessary scripts
|
||||||
|
res = self.nodes[i].importmulti([
|
||||||
|
{"desc": p2sh_ms_desc, "timestamp": "now"},
|
||||||
|
])
|
||||||
|
assert all([r["success"] for r in res])
|
||||||
|
|
||||||
p2sh_ids.append([])
|
p2sh_ids.append([])
|
||||||
wit_ids.append([])
|
wit_ids.append([])
|
||||||
for _ in range(2):
|
for _ in range(2):
|
||||||
|
Loading…
Reference in New Issue
Block a user