mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
Merge bitcoin/bitcoin#31874: qa wallet: Activate dormant checks in wallet_multisig_descriptor_psbt.py
35d17cd5ee
qa wallet: Actually make use of expressions (Hodlinator) Pull request description: Conditions had virtually no effect, lets activate them. ACKs for top commit: maflcko: lgtm ACK35d17cd5ee
ryanofsky: Code review ACK35d17cd5ee
l0rinc: ACK35d17cd5ee
Tree-SHA512: 852e325714e4f3083e28ef1a91c68250ee536d1c0ed09cac15d2ea74d47cefeffba19df4efe3d25d359ec8bc1588ce5bcf263efbcc2b392d102f5ff5c90307d4
This commit is contained in:
commit
930b237f16
1 changed files with 2 additions and 2 deletions
|
@ -95,9 +95,9 @@ class WalletMultisigDescriptorPSBTTest(BitcoinTestFramework):
|
|||
self.log.info("Check that every participant's multisig generates the same addresses...")
|
||||
for _ in range(10): # we check that the first 10 generated addresses are the same for all participant's multisigs
|
||||
receive_addresses = [multisig.getnewaddress() for multisig in participants["multisigs"]]
|
||||
all(address == receive_addresses[0] for address in receive_addresses)
|
||||
assert all(address == receive_addresses[0] for address in receive_addresses)
|
||||
change_addresses = [multisig.getrawchangeaddress() for multisig in participants["multisigs"]]
|
||||
all(address == change_addresses[0] for address in change_addresses)
|
||||
assert all(address == change_addresses[0] for address in change_addresses)
|
||||
|
||||
self.log.info("Get a mature utxo to send to the multisig...")
|
||||
coordinator_wallet = participants["signers"][0]
|
||||
|
|
Loading…
Add table
Reference in a new issue