File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -96,9 +96,9 @@ def run_test(self):
96
96
self .log .info ("Check that every participant's multisig generates the same addresses..." )
97
97
for _ in range (10 ): # we check that the first 10 generated addresses are the same for all participant's multisigs
98
98
receive_addresses = [multisig .getnewaddress () for multisig in participants ["multisigs" ]]
99
- all (address == receive_addresses [0 ] for address in receive_addresses )
99
+ assert all (address == receive_addresses [0 ] for address in receive_addresses )
100
100
change_addresses = [multisig .getrawchangeaddress () for multisig in participants ["multisigs" ]]
101
- all (address == change_addresses [0 ] for address in change_addresses )
101
+ assert all (address == change_addresses [0 ] for address in change_addresses )
102
102
103
103
self .log .info ("Get a mature utxo to send to the multisig..." )
104
104
coordinator_wallet = participants ["signers" ][0 ]
You can’t perform that action at this time.
0 commit comments