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 @@ -95,9 +95,9 @@ def run_test(self):
95
95
self .log .info ("Check that every participant's multisig generates the same addresses..." )
96
96
for _ in range (10 ): # we check that the first 10 generated addresses are the same for all participant's multisigs
97
97
receive_addresses = [multisig .getnewaddress () for multisig in participants ["multisigs" ]]
98
- all (address == receive_addresses [0 ] for address in receive_addresses )
98
+ assert all (address == receive_addresses [0 ] for address in receive_addresses )
99
99
change_addresses = [multisig .getrawchangeaddress () for multisig in participants ["multisigs" ]]
100
- all (address == change_addresses [0 ] for address in change_addresses )
100
+ assert all (address == change_addresses [0 ] for address in change_addresses )
101
101
102
102
self .log .info ("Get a mature utxo to send to the multisig..." )
103
103
coordinator_wallet = participants ["signers" ][0 ]
You can’t perform that action at this time.
0 commit comments