mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-18 22:35:39 +01:00
Merge bitcoin/bitcoin#31874: qa wallet: Activate dormant checks in wallet_multisig_descriptor_psbt.py
35d17cd5eeqa wallet: Actually make use of expressions (Hodlinator) Pull request description: Conditions had virtually no effect, lets activate them. ACKs for top commit: maflcko: lgtm ACK35d17cd5eeryanofsky: Code review ACK35d17cd5eel0rinc: ACK35d17cd5eeTree-SHA512: 852e325714e4f3083e28ef1a91c68250ee536d1c0ed09cac15d2ea74d47cefeffba19df4efe3d25d359ec8bc1588ce5bcf263efbcc2b392d102f5ff5c90307d4
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user