1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-24 16:38:15 +00:00

fixup! feat(core):: support sortedmulti

This commit is contained in:
Ondřej Vejpustek 2024-11-21 14:19:00 +01:00
parent bf211e1214
commit 7ed1c424df

View File

@ -111,7 +111,7 @@ class PubkeysOrderChecker(MatchChecker):
def attribute_from_tx(self, txio: TxInput | TxOutput) -> Any:
if not txio.multisig:
return None
return txio.multisig is not None and txio.multisig.pubkeys_order
return txio.multisig.pubkeys_order
class MultisigChecker(MatchChecker):