chore(core/rust): mark icons with empty right column, delete unused ones

[no changelog]
pull/2961/head
grdddj 12 months ago committed by Jiří Musil
parent f27405109e
commit 88fd4cd11f

Before

Width:  |  Height:  |  Size: 157 B

After

Width:  |  Height:  |  Size: 157 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 B

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 142 B

@ -14,8 +14,6 @@ include_icon!(ICON_ALERT, "model_tr/res/alert.toif");
include_icon!(ICON_SPINNER, "model_tr/res/spinner.toif");
include_icon!(ICON_REDO, "model_tr/res/redo.toif");
include_icon!(ICON_EXIT, "model_tr/res/exit.toif");
include_icon!(ICON_INFO, "model_tr/res/info.toif");
include_icon!(ICON_INFO_INVERTED, "model_tr/res/info_inverted.toif");
pub const TEXT_NORMAL: TextStyle = TextStyle::new(Font::NORMAL, BLD_FG, BLD_BG, BLD_FG, BLD_FG);
pub const TEXT_BOLD: TextStyle = TextStyle::new(Font::BOLD, BLD_FG, BLD_BG, BLD_FG, BLD_FG);

@ -124,18 +124,7 @@ where
};
let content_width = match &self.content {
ButtonContent::Text(text) => style.font.visible_text_width(text.as_ref()),
ButtonContent::Icon(icon, icon_pressed) => {
let width = if self.state == State::Pressed {
if let Some(icon_pressed) = icon_pressed {
icon_pressed.toif.width()
} else {
icon.toif.width()
}
} else {
icon.toif.width()
};
width - 1
}
ButtonContent::Icon(icon) => icon.toif.width(),
};
content_width + 2 * outline
};
@ -225,7 +214,7 @@ where
// Baselines are adjusted to give space between text and icon.
// 2 px because 1px might lead to odd coordinate which can't be render
theme::ICON_ARM_LEFT.draw(
area.left_center() + Offset::x(-2),
area.left_center() - Offset::x(2),
TOP_RIGHT,
text_color,
background_color,

@ -50,29 +50,45 @@ include_icon!(ICON_FAIL, "model_tr/res/fail.toif");
// Firmware icons
include_icon!(ICON_ARM_LEFT, "model_tr/res/arm_left.toif"); // 6*10
include_icon!(ICON_ARM_RIGHT, "model_tr/res/arm_right.toif"); // 6*10
include_icon!(ICON_ARROW_LEFT, "model_tr/res/arrow_left.toif"); // 6*10
include_icon!(ICON_ARROW_RIGHT, "model_tr/res/arrow_right.toif"); // 6*10
include_icon!(
ICON_ARROW_LEFT,
"model_tr/res/arrow_left.toif",
empty_right_col = true
); // 6*10
include_icon!(
ICON_ARROW_RIGHT,
"model_tr/res/arrow_right.toif",
empty_right_col = true
); // 6*10
include_icon!(ICON_ARROW_RIGHT_FAT, "model_tr/res/arrow_right_fat.toif"); // 4*8
include_icon!(ICON_ARROW_UP, "model_tr/res/arrow_up.toif"); // 10*6
include_icon!(ICON_ARROW_DOWN, "model_tr/res/arrow_down.toif"); // 10*6
include_icon!(ICON_ARROW_BACK_UP, "model_tr/res/arrow_back_up.toif"); // 8*8
include_icon!(ICON_BIN, "model_tr/res/bin.toif"); // 10*10
include_icon!(ICON_CANCEL, "model_tr/res/cancel_no_outline.toif"); // 8*8
include_icon!(
ICON_CANCEL_INVERTED,
"model_tr/res/cancel_no_outline_inverted.toif"
ICON_CANCEL,
"model_tr/res/cancel_no_outline.toif",
empty_right_col = true
); // 8*8
include_icon!(ICON_DELETE, "model_tr/res/delete.toif"); // 10*7
include_icon!(ICON_EYE, "model_tr/res/eye_round.toif"); // 12*7
include_icon!(ICON_LOCK, "model_tr/res/lock.toif"); // 10*10
include_icon!(ICON_LOGO, "model_tr/res/logo_22_33.toif"); // 22*33
include_icon!(ICON_NEXT_PAGE, "model_tr/res/next_page.toif"); // 10*8
include_icon!(
ICON_NEXT_PAGE,
"model_tr/res/next_page.toif",
empty_right_col = true
); // 10*8
include_icon!(ICON_PREV_PAGE, "model_tr/res/prev_page.toif"); // 8*10
include_icon!(ICON_SPACE, "model_tr/res/space.toif"); // 12*3
include_icon!(ICON_SUCCESS, "model_tr/res/success.toif");
include_icon!(ICON_TICK, "model_tr/res/tick.toif"); // 8*6
include_icon!(ICON_TICK_FAT, "model_tr/res/tick_fat.toif"); // 8*6
include_icon!(ICON_WARNING, "model_tr/res/warning.toif"); // 12*12
include_icon!(
ICON_WARNING,
"model_tr/res/warning.toif",
empty_right_col = true
); // 12*12
include_icon!(ICON_WARN_TITLE, "model_tr/res/bld_header_warn.toif");
// checklist settings

@ -699,42 +699,42 @@
"click_tests": {
"TR_test_autolock.py::test_autolock_does_not_interrupt_preauthorized": "852bedaf4727ea1b5cb56ab55ac314e6b09dccefc71bc6e32df201bdc98817e2",
"TR_test_autolock.py::test_autolock_does_not_interrupt_signing": "f99ab9a7fe7808c787269647288086ec6911691319d0b324d471258e031db74b",
"TR_test_autolock.py::test_autolock_interrupts_passphrase": "d12fccb3e8578043bed55ea5a7c2fa1fa6c834a2629c91f37cf7c46d33e802c9",
"TR_test_autolock.py::test_autolock_interrupts_passphrase": "34baec847a2c903af27aa804502d8c6f451832712f90ce59f9292d6a6fe332ea",
"TR_test_autolock.py::test_autolock_interrupts_signing": "062408fd528052b9ae39c5ca6be25d81259dd3b86112d917da40a588a11fce6e",
"TR_test_autolock.py::test_autolock_passphrase_keyboard": "83ce820d94307fca8b964d1087f54b57f3a0524b77f050d959db719c6cefa0e5",
"TR_test_autolock.py::test_dryrun_enter_word_slowly": "96dd19df7cd85394ed9b11c5c6ee2575b4e6dddb75d9e709ee905f265e3ff965",
"TR_test_autolock.py::test_autolock_passphrase_keyboard": "e2afffef8cde239f3db95c377141b1fd44433a6dc4506fcbd836dbffde64fa3b",
"TR_test_autolock.py::test_dryrun_enter_word_slowly": "41ad6438a6fe987b0f67fee9eeaebc981fd1f93cf361ad8331c3f71792101beb",
"TR_test_autolock.py::test_dryrun_locks_at_number_of_words": "cb114503460241b59aa6dff465e5d07266c939e18da5665fc83dcd6fd4edea53",
"TR_test_autolock.py::test_dryrun_locks_at_word_entry": "2930cb8c4e03f5b485cfcc234f6c061266b66174b60483ac305e6128bcc79ad5",
"TR_test_autolock.py::test_dryrun_locks_at_word_entry": "0247675051a4e054524cb49fc4379532233464163f6147cf90655f72aaf93be5",
"TR_test_lock.py::test_hold_to_lock": "9faab870f373edf47416d80e8297a14089ba1bed36f0aa0c67b3819b2cea03e3",
"TR_test_passphrase_tr.py::test_cancel": "490472798c6107483c0ffffc043d69af96d5701b311abed9c8534ee9e4f08f37",
"TR_test_passphrase_tr.py::test_passphrase_delete": "2edff7335a27d3f9fea5ed9291a835ff3025014df8c67a160c23b20d20ad06da",
"TR_test_passphrase_tr.py::test_passphrase_input[Y@14lw%p)JN@f54MYvys@zj'g-mnkoxeaMzLgfCxUdDSZW-381132c0": "883a69432774d30762fd442a89fa1364483935ecc660d52cceff2f006a4e75cf",
"TR_test_passphrase_tr.py::test_passphrase_input[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-166c898a": "b035194b44bbcfc715ed8514ed81b46daf0e65c7cd84ddcaaee64fd369df70c7",
"TR_test_passphrase_tr.py::test_passphrase_input[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-334262e9": "5297b79f4657be0e187f5d46b05b60998bddd7f978cd8c712919a5c78789bf44",
"TR_test_passphrase_tr.py::test_passphrase_input[abc 123-mvqzZUb9NaUc62Buk9WCP4L7hunsXFyamT]": "27fbe8ef2b0f880f16ae59a9664237e7be06497395fc3cfffbfc135ded354612",
"TR_test_passphrase_tr.py::test_passphrase_input[abc123ABC_<>-mtHHfh6uHtJiACwp7kzJZ97yueT6sEdQiG]": "18a225184fae76d633d6d822dfb194612122e7fb9da85b0d0827f91bb0bd810e",
"TR_test_passphrase_tr.py::test_passphrase_input_over_50_chars": "4348ca13e8f87b3d6b90821c9d2fa0a7575da9d113b855d09d3a2c072d2f79a7",
"TR_test_passphrase_tr.py::test_passphrase_loop_all_characters": "f0b53c5b71f5521aa87d03a570957afe63c9313d8c3903d1ceeb4db5228a5301",
"TR_test_pin.py::test_pin_change": "b7c0e303098d91546a266ba0f59e3eed8aa0c40845d6811698b58b09ee9b47b9",
"TR_test_pin.py::test_pin_incorrect": "3b57d4a025689b145fd10593b78963294633ed7ad129c076865377f87fbe51be",
"TR_test_pin.py::test_pin_long": "53bcc304d0e9181a5b467ada641998837f5081da55406bc5ef80fd70ac29001a",
"TR_test_pin.py::test_pin_long_delete": "e87c64f69295a134ff2c04c00a7065cc93d8666c2b66c02e849848b242e323a2",
"TR_test_pin.py::test_pin_longer_than_max": "c15b2a40cba62a14db70f405e21b9e319f655cb86037b0510b0f141ed5da14be",
"TR_test_pin.py::test_pin_same_as_wipe_code": "495213f0ee5e57c4c07998a347d3e9c9f82e2c68bcf400031acb2f3a74cc82ff",
"TR_test_pin.py::test_pin_setup": "47ce6cfa489b484ba980102d896c87d4e67a9d177266549004f0a168f51656aa",
"TR_test_pin.py::test_pin_setup_mismatch": "edad7b7156edff69ef54cb024e952c69fffe0ede13997102d6c7b8a15ae570fe",
"TR_test_pin.py::test_pin_short": "6fbef41cd1b516565683d6c4274d7c09f9254b545c140f14a6f5f09e4ec43dfa",
"TR_test_pin.py::test_wipe_code_same_as_pin": "af78871940ecd25399d12fda760a6019ace98660d1abedf5b2c3a191c79ce6f2",
"TR_test_pin.py::test_wipe_code_setup": "f529d924eba2056a0c3a6b48ca54edbdca210bb31302148662346c65a035a3bc",
"TR_test_recovery.py::test_recovery_bip39": "2147a7b5723915352ee2d474974b395a6936acdecf07c3c99a1ead1fed761300",
"TR_test_recovery.py::test_recovery_slip39_basic": "37eb68c729b99776816515c341fc5b2c23673cb367d41b231e456690b4caa224",
"TR_test_passphrase_tr.py::test_cancel": "49898dbd64673d3763aee3aa609cfd21d1c6ed1219783af44ea1eac6b993624f",
"TR_test_passphrase_tr.py::test_passphrase_delete": "0050894d50932b826237a94b9d23b72fb545e8fc01a9ba927695cdb5ef750576",
"TR_test_passphrase_tr.py::test_passphrase_input[Y@14lw%p)JN@f54MYvys@zj'g-mnkoxeaMzLgfCxUdDSZW-381132c0": "fe1196852821d5f5a9bc0c2c7d7012b7773679f8d8e61bea1ddbcdacf367606f",
"TR_test_passphrase_tr.py::test_passphrase_input[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-166c898a": "2c5120f28009ae002cb92c7786e358dc526c24dc05a78023701a6d21890f8429",
"TR_test_passphrase_tr.py::test_passphrase_input[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-334262e9": "dfde4314dc24df3631835de93e0ff5d17e312c982f8107dff395c6adbccd0767",
"TR_test_passphrase_tr.py::test_passphrase_input[abc 123-mvqzZUb9NaUc62Buk9WCP4L7hunsXFyamT]": "4de4b104ee41cb6b8a40c86b63bac1eeb3a638a10999a724345e511dde4b5ded",
"TR_test_passphrase_tr.py::test_passphrase_input[abc123ABC_<>-mtHHfh6uHtJiACwp7kzJZ97yueT6sEdQiG]": "5753745a4fb6876befe1b82104939d2de9504a59a9bbcc70818d7c56902fd6f9",
"TR_test_passphrase_tr.py::test_passphrase_input_over_50_chars": "6b645cf0bab2c73a845d510764d6af185f3cf06c964e1ff3243ee3e3052c6538",
"TR_test_passphrase_tr.py::test_passphrase_loop_all_characters": "d972114b5595927e994fa6f7699225c3edfc185fd86ba7df994f2c6df624ce8b",
"TR_test_pin.py::test_pin_change": "33d27069e11c7e30529692118469cb8d3d2d7bc525e8a1ac7430aa916f635b86",
"TR_test_pin.py::test_pin_incorrect": "1fdd48fbd1e040b4bb009a0eafe0ac692d62e8843e316c14bf24ad19664c6c45",
"TR_test_pin.py::test_pin_long": "c26647dd6b7c5801c271bfde027d6730b5d88002f552fad0e27101f2830739c6",
"TR_test_pin.py::test_pin_long_delete": "9313e1c26e9c8520110b486ed47f058dd4804566ab9e02722ba7c10f1aa4b0b7",
"TR_test_pin.py::test_pin_longer_than_max": "5e83434ce99dbc3914e90eaef7ab129a158838f6540edd69e66fa50653db1589",
"TR_test_pin.py::test_pin_same_as_wipe_code": "0e6d658f047c0fefaf4230dcbfe0ed04411f6e7185cc7300ae4b759125db0ec6",
"TR_test_pin.py::test_pin_setup": "22f3334a910105e43327aa2138d4634272fc6ce08cb57b6e6d4023d65fbdee28",
"TR_test_pin.py::test_pin_setup_mismatch": "99547ac5af382da1161eb1bfe2b735579356b35850cfb6529f5e10df9e6d25e2",
"TR_test_pin.py::test_pin_short": "1eed6ee2abd70ea907b6bc27a025881524c16042aa463e131f3fbd1ece3bb212",
"TR_test_pin.py::test_wipe_code_same_as_pin": "f7be6478cf07bc3ee2f3bdb8e31f14d71b585a9016e9421af923d918d3c0e167",
"TR_test_pin.py::test_wipe_code_setup": "eb2543665a66bda19752c9167207ac09cb34bb0bafbdc1e52348da16605524c1",
"TR_test_recovery.py::test_recovery_bip39": "3a3a014f0a82ef190ec4316e61e5618a61bba2dd61802faab632b4bbf16923e9",
"TR_test_recovery.py::test_recovery_slip39_basic": "e901bae323d7c0c2c33beb87b0066c1f8d21d27f21888a507777f2f123425278",
"TR_test_reset_bip39.py::test_reset_bip39": "45a8f1ec97b152438fcd4161c709efd61f7b98283102432a256c95051721abe2",
"TR_test_reset_slip39_advanced.py::test_reset_slip39_advanced[16of16]": "78da94ed0a465fb093fca05404c474bc05b5fdfab9c2881805c1c6258122c5c6",
"TR_test_reset_slip39_advanced.py::test_reset_slip39_advanced[2of2]": "c37ec2580398f2d7129072cd0b18f8813debfd2fdefe3b17b1cc9b6a1c1bac6b",
"TR_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "72ea356096ec36af86c2f2e7561e6b6f11a1ca02319bf6e76398434f78ece69f",
"TR_test_reset_slip39_basic.py::test_reset_slip39_basic[1of1]": "29647900796fe07bc7c15e1b9f4540180e230135a684321095d15d25b0e534f0",
"TR_test_tutorial.py::test_tutorial_again_and_skip": "361dfaa421a210e8b9adf47b6f966efc4c5bd2d7b2b0642a4d5242525dad7078",
"TR_test_tutorial.py::test_tutorial_finish": "e6894ec903c03124a3ca92c8c0d79b86c0c01791b555b492f5e50b629fbe9960",
"TR_test_reset_slip39_advanced.py::test_reset_slip39_advanced[16of16]": "e5256575528344273ad2a029efd9389e01d64d16cdf9c8e328c5ca6f7ad85f06",
"TR_test_reset_slip39_advanced.py::test_reset_slip39_advanced[2of2]": "80c95ede02a1ca62e99ec8b58f17f7ed4e0064c031067913486b76bfbcdac347",
"TR_test_reset_slip39_basic.py::test_reset_slip39_basic[16of16]": "9fd63c7498adbf9c9a4b3309e967d9c65f34a27eaa934fcd0b995f297a80a70d",
"TR_test_reset_slip39_basic.py::test_reset_slip39_basic[1of1]": "a0c65abca499b63ba2f49f5c491360ca163a97ea0beb9ada625867ae93cd2c9a",
"TR_test_tutorial.py::test_tutorial_again_and_skip": "1b6c44532ea2c4eb078e369690908a4cee6e969fd0246d58e919288964a0caa5",
"TR_test_tutorial.py::test_tutorial_finish": "a4c624e30123c3dbd21bee62342532a6efd73c5aaa5bb38da045414a7929e94a",
"TR_test_tutorial.py::test_tutorial_skip": "c5343d06a573f7603f4b04b773d203ee33b6ca866d24be79e9dd75d4a3da3896"
},
"device_tests": {
@ -855,22 +855,22 @@
"TR_bitcoin-test_getaddress_segwit_native.py::test_show_segwit[Testnet-m-86h-1h-0h-0-0-InputScr-821a199d": "57e3aa5a6a55926dcc95ca290bf1b2826bbc86b535e0baa162f7c79b1784c96b",
"TR_bitcoin-test_getaddress_segwit_native.py::test_show_segwit[Testnet-m-86h-1h-0h-1-0-InputScr-9d2fa8bc": "57e3aa5a6a55926dcc95ca290bf1b2826bbc86b535e0baa162f7c79b1784c96b",
"TR_bitcoin-test_getaddress_segwit_native.py::test_show_segwit[Testnet-m-86h-1h-0h-1-0-InputScr-d5b7f8fc": "94d0e2a7d463fbfea32e006425f316f2ba1abfc36ee7f26efa4a51be57a2e159",
"TR_bitcoin-test_getaddress_show.py::test_show_cancel[m-44h-0h-12h-0-0-InputScriptType.SPENDADD-4eca71e0": "3dca800a87874a857b3c40a4c524ceef11925b9537a7a11e6412548ec0f50a78",
"TR_bitcoin-test_getaddress_show.py::test_show_cancel[m-49h-0h-12h-0-0-InputScriptType.SPENDP2S-4ec777e0": "2c979dfb3a67302e4e716629e397fe033dc1309259768464dfb91fc84c9635e2",
"TR_bitcoin-test_getaddress_show.py::test_show_cancel[m-84h-0h-12h-0-0-InputScriptType.SPENDWIT-d6991e22": "1265f3be7c25a04687c49b091c5b3a4e6793e6daf1b58287a7d6305a26e7e811",
"TR_bitcoin-test_getaddress_show.py::test_show_cancel[m-86h-0h-12h-0-0-InputScriptType.SPENDTAP-4c5b2b38": "b571aff99f69f50660f1dc78cade1326c21b3b90056b1105f5391457634805a3",
"TR_bitcoin-test_getaddress_show.py::test_show_cancel[m-44h-0h-12h-0-0-InputScriptType.SPENDADD-4eca71e0": "5a84068819645c82dab93cdaf3c6dc667e5c87d1d3dbee4624712371d7c30ab0",
"TR_bitcoin-test_getaddress_show.py::test_show_cancel[m-49h-0h-12h-0-0-InputScriptType.SPENDP2S-4ec777e0": "61954f277ee68818e626e12ead3d1e91cd2651f44738fe2fc6d61027793aca69",
"TR_bitcoin-test_getaddress_show.py::test_show_cancel[m-84h-0h-12h-0-0-InputScriptType.SPENDWIT-d6991e22": "30082738e58c41791a2eb44b32a0e23976a787bdff5bc4dcc2d51f7fc817b823",
"TR_bitcoin-test_getaddress_show.py::test_show_cancel[m-86h-0h-12h-0-0-InputScriptType.SPENDTAP-4c5b2b38": "05eca8060ed4cd1abb732c9f5252d5776a56fa3caf1beb392d9f31ec2273b10a",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_15": "36b83d6fab39cefd75c3852b3e897f96a2250998678a93593233bfe08356280e",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_3": "875414bf1fa9b8c898cf48f426140d55af3b7071daf34a14a4e879ef7221f870",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDMULTISIG-0-3-4efd9cf3": "c22c48bcaa595e5aa2842d3c2d1054097ed49b39585408334ecb154ef413ecc3",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDMULTISIG-0-3-98a7e339": "c22c48bcaa595e5aa2842d3c2d1054097ed49b39585408334ecb154ef413ecc3",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDP2SHWITNESS--2cf5f03c": "78dd78c0717156b653c830f136e60b7199ce211013bf8363bc8428fcd60e9325",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDP2SHWITNESS--5ea18367": "54560d76bac2e60658948123590f83a50d6e3e63601fb03a554bc0e91bed7a53",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDWITNESS-2-bc-e70b56ea": "3205596cd86232fd1f9f907493a91e8c7277e37b0f03e33c33c82cefa7618856",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDWITNESS-2-bc-f3c4650f": "a812f84cdff2b7148466ea311537619a5affbfaf2cba0f3e14f00a0108ebe70e",
"TR_bitcoin-test_getaddress_show.py::test_show_tt[m-44h-0h-12h-0-0-InputScriptType.SPENDADDRESS-7e3bc134": "0ff292a149050fc8e73569a593eeecf3301d9211c51311e39bb5bd3756d3c6f0",
"TR_bitcoin-test_getaddress_show.py::test_show_tt[m-49h-0h-12h-0-0-InputScriptType.SPENDP2SHWIT-fffcf75c": "8b9db22289569987bbd0871d877df15252784440c12ed02df08a1a5fd9e4765f",
"TR_bitcoin-test_getaddress_show.py::test_show_tt[m-84h-0h-12h-0-0-InputScriptType.SPENDWITNESS-2ad0a0fd": "4a03437ac3ca130aa4f7a7166ae20b720486872e83b2bb072c4956473ce4f983",
"TR_bitcoin-test_getaddress_show.py::test_show_tt[m-86h-0h-12h-0-0-InputScriptType.SPENDTAPROOT-299be1ac": "f9a7c113692ce73e1db0f72237f565979e8aaa45ee1a8d36283e35b0f664d036",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDMULTISIG-0-3-4efd9cf3": "980a3954ba300c96382cd3570a9f56d406bf51cf62a7f47a92ccdd6c082c1120",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDMULTISIG-0-3-98a7e339": "980a3954ba300c96382cd3570a9f56d406bf51cf62a7f47a92ccdd6c082c1120",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDP2SHWITNESS--2cf5f03c": "30134f37a8986cdc54dffded0b684e976cb7df3222ae93d8225a7a2f8e515280",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDP2SHWITNESS--5ea18367": "de3fbfafe094941c769cc114dbf28f42292c9ab170c2dcfc4d928e6068091317",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDWITNESS-2-bc-e70b56ea": "255fbd34527b664b206653239b5e3015fb9e3f79c27d0e8611b3b2648448b92b",
"TR_bitcoin-test_getaddress_show.py::test_show_multisig_xpubs[InputScriptType.SPENDWITNESS-2-bc-f3c4650f": "ba3719dcfcd26a1425589d38515c79223beb365a634fe89e669fbddbf50dc1a9",
"TR_bitcoin-test_getaddress_show.py::test_show_tt[m-44h-0h-12h-0-0-InputScriptType.SPENDADDRESS-7e3bc134": "2e0607adba9b7cc7ec5fab13db5c8c6a90e45341c3eecf091850a7c580a208e1",
"TR_bitcoin-test_getaddress_show.py::test_show_tt[m-49h-0h-12h-0-0-InputScriptType.SPENDP2SHWIT-fffcf75c": "4240c18f4ddec9345a312087a88679a4f1675453a601293f012e3b33af11fc5f",
"TR_bitcoin-test_getaddress_show.py::test_show_tt[m-84h-0h-12h-0-0-InputScriptType.SPENDWITNESS-2ad0a0fd": "4ea9e5eb26158d84258332668188e27a1e22b3f51a8b37757fb0993baf181403",
"TR_bitcoin-test_getaddress_show.py::test_show_tt[m-86h-0h-12h-0-0-InputScriptType.SPENDTAPROOT-299be1ac": "85feecba576d249a3283e4c53a8604d27c4d4eca52e7c0ee0b94183a7b6f0ebf",
"TR_bitcoin-test_getaddress_show.py::test_show_unrecognized_path": "57e3aa5a6a55926dcc95ca290bf1b2826bbc86b535e0baa162f7c79b1784c96b",
"TR_bitcoin-test_getownershipproof.py::test_attack_ownership_id": "57e3aa5a6a55926dcc95ca290bf1b2826bbc86b535e0baa162f7c79b1784c96b",
"TR_bitcoin-test_getownershipproof.py::test_confirm_ownership_proof": "58e0a6e67dcb3d23eb89bb40969e8a65814cde0256e63992a74df319ad4bf35e",
@ -1292,7 +1292,7 @@
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction]": "df7e8b64dd214d506690090dabf2b5e3f12759f8076ae4a99d71ca32507f56c6",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_additional_wit-36ba8ce8": "ba8437b39fa9b3552c15019a3ef2ac2c6bc50e13eb08c045a860538843cf5d0a",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_plutus_transaction_with_required_signers]": "3e2985891282173c0043e544dadf2935eff5477a06d5aa34926bbaa13947c70c",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_o-0c37e6dc": "695e91da2c50dfc25a1bff9c4a01db02e1409ef06a6ccb6220ffdd152fb9dab3",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_o-0c37e6dc": "242a5b73c052094ef1bb89834acaed9a8097765c07250a59039cba5281063ec1",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_o-7f1d12f6": "ce7eaa445d97283fa0a43a87a8b4f8848da9b4075e1cfd9b9ccc682bf3bf698d",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_address_change_output]": "b218e5fa46b31875f15ab948128c2ba2811729a7801f43557541112a2a71e560",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[simple_transaction_with_base_script_address_a-56fc16f7": "afcc1e47bc323cccf5e8cd6feca4e20ac5c677ef3df5f1ad7814aa619245e635",
@ -1311,7 +1311,7 @@
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_non-p-26df89e6": "b99898edcc13abd63aaff8c4fac7466b78259b0a6ce2f809fda07580cd503d74",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_other-6a6c5c8d": "91a6971fdfb2f8365efc4e433eaf9add064f88771b06adefdcb52a55248d0c16",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_cip36_registration_and_votin-1b01d6f0": "d1b389cf4d9488c4d0ec21a0456d6fc55dcbcf5b69ab7ee91571a4a0eecc1e4c",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_everything_set_except_pool_r-1e1ef130": "d00239398e36c83dc9ca261ae8b54de09e3c1311cce951ab6a28f9ade25e198f",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_everything_set_except_pool_r-1e1ef130": "78499e763dc8f0b072e9a373afbb255fb6802873353165f8eb94e957688571a3",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration]": "bf24bed0b0715e10bc5437ecdf5e53028d903594dde8fbcab55f978ab4bdd818",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration_and_withdrawal]": "bf24bed0b0715e10bc5437ecdf5e53028d903594dde8fbcab55f978ab4bdd818",
"TR_cardano-test_sign_tx.py::test_cardano_sign_tx[transaction_with_stake_deregistration_with_ac-9ca046f0": "fe03f08dd1aa74e033ec947468663b26dd9a82b7400613b2fe2ac7a5ba05a710",
@ -1652,7 +1652,7 @@
"TR_reset_recovery-test_recovery_bip39_dryrun.py::test_bad_parameters[pin_protection-True]": "57e3aa5a6a55926dcc95ca290bf1b2826bbc86b535e0baa162f7c79b1784c96b",
"TR_reset_recovery-test_recovery_bip39_dryrun.py::test_bad_parameters[u2f_counter-1]": "57e3aa5a6a55926dcc95ca290bf1b2826bbc86b535e0baa162f7c79b1784c96b",
"TR_reset_recovery-test_recovery_bip39_dryrun.py::test_dry_run": "590daa1cb3c66ffc542e399f4e1800a92e6b29f66b0559291b78a7b5ef5a91aa",
"TR_reset_recovery-test_recovery_bip39_dryrun.py::test_invalid_seed_core": "9c8036e097d1edcc95ba18a3fafc293e4d9062b68a176fd57aff65937547432b",
"TR_reset_recovery-test_recovery_bip39_dryrun.py::test_invalid_seed_core": "b20e60f198f0255df242b2f80fc47be374ad16f2c6b6d64758c5e1735ca1ba44",
"TR_reset_recovery-test_recovery_bip39_dryrun.py::test_seed_mismatch": "79442e2fc2418d74cfdddcb68fc3b18979ec2eefecea94bc0eccb1947424c6e2",
"TR_reset_recovery-test_recovery_bip39_dryrun.py::test_uninitialized": "f49c8d846c2d56a575f0ad49463845ba641b02656783e4fcfc67d74e8fa671dd",
"TR_reset_recovery-test_recovery_bip39_t2.py::test_already_initialized": "57e3aa5a6a55926dcc95ca290bf1b2826bbc86b535e0baa162f7c79b1784c96b",
@ -1848,10 +1848,10 @@
"TR_test_session_id_and_passphrase.py::test_multiple_passphrases": "6ef3032ecd01d4f62294f878bb2e682b57c91521cca0ee158d2098bd6ad8375c",
"TR_test_session_id_and_passphrase.py::test_multiple_sessions": "57e3aa5a6a55926dcc95ca290bf1b2826bbc86b535e0baa162f7c79b1784c96b",
"TR_test_session_id_and_passphrase.py::test_passphrase_ack_mismatch": "97df1d41e48484b8372bf540ccc580b9532ef50e95101876777809029207deca",
"TR_test_session_id_and_passphrase.py::test_passphrase_always_on_device": "420c224571fe05c13286fac19363eaf954adcaa3fdc6735363e6f3d717210128",
"TR_test_session_id_and_passphrase.py::test_passphrase_always_on_device": "eed2533300c737b2d14bf2fca7e7266ce91d39f11477a679a54f8ea752635e74",
"TR_test_session_id_and_passphrase.py::test_passphrase_length": "1b586b3f59194b29ffecc26198339e70dd8b140647a8bb668fb48284295b746c",
"TR_test_session_id_and_passphrase.py::test_passphrase_missing": "c5d0b5c38f3bddbedf6dd096587707c541e64cec208e653019f9c7c36e81adf3",
"TR_test_session_id_and_passphrase.py::test_passphrase_on_device": "5f799f05463021be742fee81eeddbdf71eb9369b800a8171587d3aebc066bb56",
"TR_test_session_id_and_passphrase.py::test_passphrase_on_device": "9498dd9de430ddd83334b97200f77577e540f3c7196b08b3562553e6e0815eac",
"TR_test_session_id_and_passphrase.py::test_session_enable_passphrase": "05ac00a6703559a8354c8d5ca158e43dc0c13caec53434a999fd82d733d48dd0",
"TR_test_session_id_and_passphrase.py::test_session_with_passphrase": "43325012941787da894d614d0760a52d3e509e31f88602fbc22a8d2f7fb986af",
"TR_tezos-test_getaddress.py::test_tezos_get_address": "537e61b567a83d0f04debff71a0f4bb15fa7057b3156cefd00f1599cb7b52352",

Loading…
Cancel
Save