From 7ed1c424dfdd7a4619c811763a28e2d78f0743dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Vejpustek?= Date: Thu, 21 Nov 2024 14:19:00 +0100 Subject: [PATCH] fixup! feat(core):: support sortedmulti --- core/src/apps/bitcoin/sign_tx/matchcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/apps/bitcoin/sign_tx/matchcheck.py b/core/src/apps/bitcoin/sign_tx/matchcheck.py index 2e1072cf5a..906a6a3aac 100644 --- a/core/src/apps/bitcoin/sign_tx/matchcheck.py +++ b/core/src/apps/bitcoin/sign_tx/matchcheck.py @@ -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):