mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
sort pubkeys in multisig scripts
This commit is contained in:
parent
53b872acdf
commit
f522d6c36d
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ class BIP32_Account_2of2(BIP32_Account):
|
|||
return cK.encode('hex')
|
||||
|
||||
def redeem_script(self, sequence):
|
||||
pubkeys = self.get_pubkeys(sequence)
|
||||
pubkeys = sorted(self.get_pubkeys(sequence))
|
||||
return Transaction.multisig_script(pubkeys, 2)
|
||||
|
||||
def get_address(self, for_change, n):
|
||||
|
|
Loading…
Add table
Reference in a new issue