diff --git a/bitcoin_client_js/src/__tests__/automations/sign_with_wallet_accept.json b/bitcoin_client_js/src/__tests__/automations/sign_with_wallet_accept.json index b5ddc7914..81c5db84c 100644 --- a/bitcoin_client_js/src/__tests__/automations/sign_with_wallet_accept.json +++ b/bitcoin_client_js/src/__tests__/automations/sign_with_wallet_accept.json @@ -2,14 +2,14 @@ "version": 1, "rules": [ { - "regexp": "Spend from|Wallet name|Review|Amount|Address|Confirm|Fees", + "regexp": "Spend from|Wallet name|Review|Amount|Address|Fees", "actions": [ ["button", 2, true], ["button", 2, false] ] }, { - "regexp": "Approve|Accept", + "regexp": "Approve|Continue|Sign", "actions": [ [ "button", 1, true ], [ "button", 2, true ], diff --git a/src/ui/display_bagl.c b/src/ui/display_bagl.c index 806cc538f..f6f03a087 100644 --- a/src/ui/display_bagl.c +++ b/src/ui/display_bagl.c @@ -186,7 +186,6 @@ UX_STEP_NOCB(ux_high_fee_step, }); #endif -UX_STEP_NOCB(ux_confirm_transaction_step, pnn, {&C_icon_eye, "Confirm", "transaction"}); UX_STEP_NOCB(ux_confirm_selftransfer_step, pnn, {&C_icon_eye, "Confirm", "self-transfer"}); UX_STEP_NOCB(ux_confirm_transaction_fees_step, bnnn_paging, @@ -194,10 +193,10 @@ UX_STEP_NOCB(ux_confirm_transaction_fees_step, .title = "Fees", .text = g_ui_state.validate_transaction.fee, }); -UX_STEP_CB(ux_accept_and_send_step, +UX_STEP_CB(ux_sign_transaction_step, pbb, set_ux_flow_response(true), - {&C_icon_validate_14, "Accept", "and send"}); + {&C_icon_validate_14, "Sign", "transaction"}); // Step with wallet icon and "Register wallet" UX_STEP_NOCB(ux_display_register_wallet_step, @@ -379,12 +378,12 @@ UX_FLOW(ux_display_default_wallet_address_flow, // FLOW to display a registered wallet and authorize spending: // #1 screen: "Spend from known wallet" // #2 screen: wallet name -// #3 screen: approve button +// #3 screen: "Continue" button // #4 screen: reject button UX_FLOW(ux_display_spend_from_wallet_flow, &ux_display_spend_from_registered_wallet_step, &ux_display_wallet_name_step, - &ux_display_approve_step, + &ux_display_continue_step, &ux_display_reject_step); // FLOW to warn about external inputs @@ -424,45 +423,44 @@ UX_FLOW(ux_display_nondefault_sighash_flow, // #1 screen: eye icon + "Review" + index of output to validate // #2 screen: output amount // #3 screen: output address (paginated) -// #4 screen: approve button +// #4 screen: "Continue" button // #5 screen: reject button UX_FLOW(ux_display_output_address_amount_flow, &ux_review_step, &ux_validate_amount_step, &ux_validate_address_step, - &ux_display_approve_step, + &ux_display_continue_step, &ux_display_reject_step); -// Finalize see the transaction fees and finally accept signing -// #1 screen: eye icon + "Confirm transaction" -// #2 screen: fee amount -// #3 screen: "Continue", with approve button -// #4 screen: reject button +// FLOW to warn about fees above 10% of total +// #1 screen: eye icon + fees too high message +// #2 screen: "Continue", with approve button +// #3 screen: reject button UX_FLOW(ux_warn_high_fee_flow, &ux_high_fee_step, &ux_display_continue_step, &ux_display_reject_step); -// Finalize see the transaction fees and finally accept signing -// #1 screen: eye icon + "Confirm transaction" -// #2 screen: fee amount -// #3 screen: "Accept and send", with approve button -// #4 screen: reject button +// Show transaction fees and finally accept signing +// #1 screen: fee amount +// #2 screen: "Sign transaction", with approve button +// #3 screen: reject button UX_FLOW(ux_accept_transaction_flow, - &ux_confirm_transaction_step, &ux_confirm_transaction_fees_step, - &ux_accept_and_send_step, + &ux_sign_transaction_step, &ux_display_reject_step); -// Finalize see the transaction fees and finally accept signing +// Show transaction fees and finally accept signing, in case of self-transfer +// Since there is no output to show, we add an initial screen to make sure +// the user understands the nature of the transaction. // #1 screen: eye icon + "Confirm self-transfer" // #2 screen: fee amount -// #3 screen: "Accept and send", with approve button +// #3 screen: "Sign transaction", with approve button // #4 screen: reject button UX_FLOW(ux_accept_selftransfer_flow, &ux_confirm_selftransfer_step, &ux_confirm_transaction_fees_step, - &ux_accept_and_send_step, + &ux_sign_transaction_step, &ux_display_reject_step); void ui_display_pubkey_flow(void) { diff --git a/tests/instructions.py b/tests/instructions.py index b03aa4466..ad0711b3c 100644 --- a/tests/instructions.py +++ b/tests/instructions.py @@ -154,8 +154,8 @@ def sign_psbt_instruction_approve(model: Firmware) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - instructions.new_request("Approve") - instructions.same_request("Accept") + instructions.new_request("Continue") + instructions.same_request("Sign") else: instructions.navigate_end_of_flow() instructions.confirm_transaction() @@ -166,8 +166,8 @@ def sign_psbt_instruction_approve_2(model: Firmware) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - instructions.new_request("Approve") - instructions.new_request("Accept") + instructions.new_request("Continue") + instructions.new_request("Sign") else: instructions.navigate_end_of_flow() instructions.navigate_end_of_flow() @@ -179,9 +179,9 @@ def sign_psbt_instruction_approve_3(model: Firmware) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - instructions.new_request("Approve") instructions.new_request("Continue") - instructions.same_request("Accept") + instructions.new_request("Continue") + instructions.same_request("Sign") else: instructions.navigate_end_of_flow() instructions.navigate_end_of_flow() @@ -195,8 +195,8 @@ def sign_psbt_instruction_approve_4(model: Firmware) -> Instructions: if model.name.startswith("nano"): instructions.new_request("Continue") - instructions.new_request("Approve") - instructions.same_request("Accept") + instructions.new_request("Continue") + instructions.same_request("Sign") else: instructions.warning_accept() instructions.navigate_end_of_flow() @@ -208,9 +208,7 @@ def sign_psbt_instruction_approve_5(model: Firmware) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - instructions.new_request("Accept") - instructions.new_request("Approve") - instructions.same_request("Accept") + instructions.new_request("Sign") else: instructions.navigate_end_of_flow() instructions.confirm_transaction() @@ -221,9 +219,9 @@ def sign_psbt_instruction_approve_6(model: Firmware) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.new_request("Accept") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.new_request("Sign") else: instructions.confirm_wallet() instructions.navigate_end_of_flow() @@ -236,9 +234,9 @@ def sign_psbt_instruction_approve_7(model: Firmware) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.same_request("Accept") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.same_request("Sign") else: instructions.confirm_wallet() instructions.navigate_end_of_flow() @@ -250,10 +248,10 @@ def sign_psbt_instruction_approve_8(model: Firmware) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - instructions.new_request("Approve") instructions.new_request("Continue") - instructions.new_request("Approve") - instructions.same_request("Accept") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.same_request("Sign") else: instructions.confirm_wallet() instructions.warning_accept() @@ -266,9 +264,9 @@ def sign_psbt_instruction_approve_9(model: Firmware) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.same_request("Accept") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.same_request("Sign") else: instructions.navigate_end_of_flow() instructions.navigate_end_of_flow() @@ -281,12 +279,12 @@ def sign_psbt_instruction_approve_external_inputs(model: Firmware) -> Instructio if model.name.startswith("nano"): instructions.new_request("Continue") - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.same_request("Accept") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.same_request("Sign") else: instructions.warning_accept() instructions.navigate_end_of_flow() @@ -303,11 +301,11 @@ def sign_psbt_instruction_approve_external_inputs_2(model: Firmware) -> Instruct if model.name.startswith("nano"): instructions.new_request("Continue") - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.new_request("Approve") - instructions.same_request("Accept") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.new_request("Continue") + instructions.same_request("Sign") else: instructions.warning_accept() instructions.navigate_end_of_flow() @@ -323,8 +321,8 @@ def sign_psbt_instruction_approve_10(model: Firmware) -> Instructions: if model.name.startswith("nano"): instructions.new_request("Continue") - instructions.new_request("Approve") - instructions.new_request("Accept") + instructions.new_request("Continue") + instructions.new_request("Sign") else: instructions.warning_accept() instructions.navigate_end_of_flow() @@ -333,14 +331,14 @@ def sign_psbt_instruction_approve_10(model: Firmware) -> Instructions: return instructions -def e2e_register_wallet_instruction(model: Firmware) -> Instructions: +def e2e_register_wallet_instruction(model: Firmware, n_keys) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - for _ in range(23): + for _ in range(n_keys + 1): instructions.new_request("Approve", save_screenshot=False) else: - for _ in range(23): + for _ in range(n_keys + 1): instructions.choice_confirm(save_screenshot=False) return instructions @@ -349,9 +347,9 @@ def e2e_sign_psbt_instruction(model: Firmware) -> Instructions: instructions = Instructions(model) if model.name.startswith("nano"): - instructions.new_request("Approve", save_screenshot=False) - instructions.new_request("Approve", save_screenshot=False) - instructions.new_request("Accept", save_screenshot=False) + instructions.new_request("Continue", save_screenshot=False) + instructions.new_request("Continue", save_screenshot=False) + instructions.new_request("Sign", save_screenshot=False) else: instructions.confirm_wallet(save_screenshot=False) instructions.navigate_end_of_flow(save_screenshot=False) diff --git a/tests/snapshots/nanos/test_get_extended_pubkey_standard_display_m/44'/1'/0'_0_0/00010.png b/tests/snapshots/nanos/test_get_extended_pubkey_standard_display_m/44'/1'/0'_0_0/00010.png deleted file mode 100644 index 0ac6557b0..000000000 Binary files a/tests/snapshots/nanos/test_get_extended_pubkey_standard_display_m/44'/1'/0'_0_0/00010.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_get_extended_pubkey_standard_display_m/44'/1'/0'_0_0/00011.png b/tests/snapshots/nanos/test_get_extended_pubkey_standard_display_m/44'/1'/0'_0_0/00011.png deleted file mode 100644 index 66c411c2e..000000000 Binary files a/tests/snapshots/nanos/test_get_extended_pubkey_standard_display_m/44'/1'/0'_0_0/00011.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00000.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00000.png deleted file mode 100644 index 64cd242c3..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00000.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00001.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00001.png deleted file mode 100644 index 55041b434..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00001.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00002.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00002.png deleted file mode 100644 index 4c71b7457..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00003.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00003.png deleted file mode 100644 index 650c707b2..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00003.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00004.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00004.png deleted file mode 100644 index a25a822b6..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00004.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00005.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00005.png deleted file mode 100644 index b7451681c..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00005.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00006.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00006.png deleted file mode 100644 index aac554996..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00006.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00007.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00007.png deleted file mode 100644 index 7a1592a3e..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00007.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00008.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00008.png deleted file mode 100644 index 66c411c2e..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_1_0/00008.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00000.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00000.png deleted file mode 100644 index 3ff7ed563..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00000.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00001.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00001.png deleted file mode 100644 index 16270bf06..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00001.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00002.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00002.png deleted file mode 100644 index bed037356..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00003.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00003.png deleted file mode 100644 index cc2dcc1a1..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00003.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00004.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00004.png deleted file mode 100644 index 5435cba82..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00004.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00005.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00005.png deleted file mode 100644 index 04baf13de..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00005.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00006.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00006.png deleted file mode 100644 index eddf09893..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00006.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00007.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00007.png deleted file mode 100644 index 48014581c..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00007.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00008.png b/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00008.png deleted file mode 100644 index 66c411c2e..000000000 Binary files a/tests/snapshots/nanos/test_register_wallet_invalid_pubkey_version_2_0/00008.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_0/00005.png b/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00000.png b/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00001.png b/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00002.png b/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_input_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_0/00005.png b/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00000.png b/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00000.png index 50d6e47ab..13ac88e55 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00001.png b/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00001.png index 2af22f7ca..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00002.png b/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_output_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_0/00005.png b/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00000.png b/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00001.png b/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00002.png b/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_all_anyone_sign_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_all_input_modified_0_0/00005.png b/tests/snapshots/nanos/test_sighash_all_input_modified_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_input_modified_0_0/00005.png and b/tests/snapshots/nanos/test_sighash_all_input_modified_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00000.png b/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00000.png and b/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00001.png b/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00001.png and b/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00002.png b/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_all_input_modified_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_all_output_modified_0_0/00005.png b/tests/snapshots/nanos/test_sighash_all_output_modified_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_output_modified_0_0/00005.png and b/tests/snapshots/nanos/test_sighash_all_output_modified_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00000.png b/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00000.png index 50d6e47ab..13ac88e55 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00000.png and b/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00001.png b/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00001.png index 2af22f7ca..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00001.png and b/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00002.png b/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_all_output_modified_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_0/00005.png b/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_0/00005.png and b/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00000.png b/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00000.png and b/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00001.png b/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00001.png and b/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00002.png b/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_all_sign_psbt_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_0/00005.png b/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00000.png b/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00001.png b/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00002.png b/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_input_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_0/00005.png b/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00000.png b/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00000.png index 50d6e47ab..13ac88e55 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00001.png b/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00001.png index 2af22f7ca..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00002.png b/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_output_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_0/00005.png b/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00000.png b/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00001.png b/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00002.png b/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_none_anyone_sign_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_none_input_modified_1_0/00005.png b/tests/snapshots/nanos/test_sighash_none_input_modified_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_input_modified_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_none_input_modified_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00000.png b/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00001.png b/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00002.png b/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_none_input_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_none_output_modified_1_0/00005.png b/tests/snapshots/nanos/test_sighash_none_output_modified_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_output_modified_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_none_output_modified_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00000.png b/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00000.png index 50d6e47ab..13ac88e55 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00001.png b/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00001.png index 2af22f7ca..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00002.png b/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_none_output_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_0/00005.png b/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00000.png b/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00001.png b/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00002.png b/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_none_sign_psbt_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_0_0/00004.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_0_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_0_0/00004.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_0_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00000.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00000.png index 50d6e47ab..9333a4225 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00000.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00001.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00001.png index 8bcd6e61d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00001.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00002.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_1_0/00004.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_1_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_1_0/00004.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_1_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00000.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00000.png index 50d6e47ab..9333a4225 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00000.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00001.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00001.png index 8bcd6e61d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00001.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00002.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash2_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_1_0/00004.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_1_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_1_0/00004.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_1_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00000.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00000.png index 50d6e47ab..9333a4225 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00000.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00001.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00001.png index 8bcd6e61d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00001.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00002.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash3_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_1_0/00004.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_1_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_1_0/00004.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_1_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00000.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00000.png index 50d6e47ab..9333a4225 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00000.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00001.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00001.png index 8bcd6e61d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00001.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00002.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash81_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_1_0/00004.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_1_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_1_0/00004.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_1_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00000.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00000.png index 50d6e47ab..9333a4225 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00000.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00001.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00001.png index 8bcd6e61d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00001.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00002.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash82_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_1_0/00004.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_1_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_1_0/00004.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_1_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00000.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00000.png index 50d6e47ab..9333a4225 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00000.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00001.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00001.png index 8bcd6e61d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00001.png and b/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00002.png b/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_segwitv0_sighash83_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_0/00005.png b/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00000.png b/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00001.png b/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00002.png b/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_input_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_0/00005.png b/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00000.png b/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00000.png index 50d6e47ab..13ac88e55 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00001.png b/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00001.png index 2af22f7ca..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00002.png b/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_output_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_0/00005.png b/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00000.png b/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00001.png b/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00002.png b/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_single_anyone_sign_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_single_input_modified_1_0/00005.png b/tests/snapshots/nanos/test_sighash_single_input_modified_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_input_modified_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_single_input_modified_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00000.png b/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00001.png b/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00002.png b/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_single_input_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_0/00005.png b/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00000.png b/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00000.png index 50d6e47ab..13ac88e55 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00001.png b/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00001.png index 2af22f7ca..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00002.png b/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_single_output_different_index_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_0/00005.png b/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00000.png b/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00000.png index 50d6e47ab..13ac88e55 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00001.png b/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00001.png index 2af22f7ca..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00002.png b/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_single_output_same_index_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_0/00005.png b/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_0/00005.png and b/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00000.png b/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00000.png and b/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00001.png b/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00001.png and b/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00002.png b/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_single_sign_psbt_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_unsupported_0_0/00005.png b/tests/snapshots/nanos/test_sighash_unsupported_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_unsupported_0_0/00005.png and b/tests/snapshots/nanos/test_sighash_unsupported_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_unsupported_0_1/00000.png b/tests/snapshots/nanos/test_sighash_unsupported_0_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_unsupported_0_1/00000.png and b/tests/snapshots/nanos/test_sighash_unsupported_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_unsupported_0_1/00001.png b/tests/snapshots/nanos/test_sighash_unsupported_0_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_unsupported_0_1/00001.png and b/tests/snapshots/nanos/test_sighash_unsupported_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_unsupported_0_1/00002.png b/tests/snapshots/nanos/test_sighash_unsupported_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_unsupported_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_0/00005.png b/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_0/00005.png and b/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00000.png b/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00000.png index 50d6e47ab..63bc77614 100644 Binary files a/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00000.png and b/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00001.png b/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00001.png index ed018049a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00001.png and b/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00002.png b/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sighash_unsupported_for_segwitv0_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00003.png b/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00003.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00003.png and b/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00003.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png index 50d6e47ab..00cb376b9 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png index 8b23dab0d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_highfee_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_highfee_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_highfee_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_highfee_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00000.png index 50d6e47ab..368c431be 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00001.png index 72ec9ac5a..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_highfee_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_0_0/00003.png b/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_0_0/00003.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_0_0/00003.png and b/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_0_0/00003.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00000.png index 50d6e47ab..1c4947d5a 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00001.png index 584742322..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_miniscript_multikey_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_0_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_0_0/00002.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_0_0/00002.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_0_0/00002.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00000.png index 50d6e47ab..150191ed9 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00001.png index 5b902a479..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png index 50d6e47ab..150191ed9 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png index 5b902a479..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_0_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_0_0/00002.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_0_0/00002.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_0_0/00002.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00000.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00000.png index 50d6e47ab..3a5ef5f56 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00000.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00001.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00001.png index 0a63fc98e..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00001.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_0_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_0_0/00002.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_0_0/00002.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_0_0/00002.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00000.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00000.png index 50d6e47ab..3a5ef5f56 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00000.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00001.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00001.png index 0a63fc98e..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00001.png and b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_multisig_wsh_v1_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00000.png index 50d6e47ab..b744c60a2 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00001.png index a1dd97a9d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png index 50d6e47ab..b744c60a2 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png index a1dd97a9d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_large_amount_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png index 50d6e47ab..274a5c125 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png index 7ba086f8f..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png index 50d6e47ab..274a5c125 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png index 7ba086f8f..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png index 50d6e47ab..274a5c125 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png index 7ba086f8f..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png index 50d6e47ab..274a5c125 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png index 7ba086f8f..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png index 50d6e47ab..12073c912 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png index 8c6093506..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png index 50d6e47ab..12073c912 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png index 8c6093506..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_0_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_0_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_0_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_0_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png index 50d6e47ab..9333a4225 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png index 8bcd6e61d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png index 50d6e47ab..9333a4225 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png index 8bcd6e61d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_0/00006.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_0/00006.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_0/00006.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_0/00006.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png index 50d6e47ab..62cb4623c 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png index 82d0ff395..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00006.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00006.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00006.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00006.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png index 50d6e47ab..62cb4623c 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png index 82d0ff395..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00006.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00006.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00006.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00006.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png index 50d6e47ab..62cb4623c 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png index 82d0ff395..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png index 50d6e47ab..57a28b5d5 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png index f3c2f880f..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png index 50d6e47ab..57a28b5d5 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png index f3c2f880f..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png index 1c9156c31..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png and b/tests/snapshots/nanos/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png index 50d6e47ab..5a885f5e6 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png index 4dbd457a6..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_all_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png index 50d6e47ab..5a885f5e6 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png index 4dbd457a6..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png index 50d6e47ab..5a885f5e6 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png index 4dbd457a6..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00000.png index 50d6e47ab..5a885f5e6 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00001.png index 4dbd457a6..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_taproot_1to2_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_0_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_0_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_0_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_0_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png index 50d6e47ab..c8ee3a900 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png index 9ff3e0238..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_tr_script_pk_sighash_all_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_2_0/00006.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_2_0/00006.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_2_0/00006.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_2_0/00006.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_3_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_3_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_3_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_3_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_4_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_4_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_4_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_4_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00000.png index 50d6e47ab..142b6bd02 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00001.png index 7a5c5796d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_0_5_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_2_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_2_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_2_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_2_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_3_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_3_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_3_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_3_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00000.png index 50d6e47ab..142b6bd02 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00001.png index 7a5c5796d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_1_4_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_1_0/00005.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_1_0/00005.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_1_0/00005.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_1_0/00005.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_2_0/00006.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_2_0/00006.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_2_0/00006.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_2_0/00006.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_3_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_3_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_3_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_3_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_0/00004.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_0/00004.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_0/00004.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_0/00004.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00000.png index 50d6e47ab..142b6bd02 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00001.png index 7a5c5796d..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_external_inputs_2_4_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_0_0/00003.png b/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_0_0/00003.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_0_0/00003.png and b/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_0_0/00003.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00000.png b/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00000.png index 50d6e47ab..d959f7e4a 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00000.png and b/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00001.png b/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00001.png index 51e92ae30..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00001.png and b/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_naked_opreturn_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_0_0/00011.png b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_0_0/00011.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_0_0/00011.png and b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_0_0/00011.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00000.png b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00000.png index 50d6e47ab..d959f7e4a 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00000.png and b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00001.png b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00001.png index 51e92ae30..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00001.png and b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_0_0/00011.png b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_0_0/00011.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_0_0/00011.png and b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_0_0/00011.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00000.png b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00000.png index 50d6e47ab..d959f7e4a 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00000.png and b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00001.png b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00001.png index 51e92ae30..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00001.png and b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00002.png b/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_opreturn_v1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_0/00006.png b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_0/00006.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_0/00006.png and b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_0/00006.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00000.png index 50d6e47ab..c947508d7 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00001.png index 6330ad3b6..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_0/00006.png b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_0/00006.png index 66c411c2e..12b06a78e 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_0/00006.png and b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_0/00006.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png index 50d6e47ab..c947508d7 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png and b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png index 6330ad3b6..9ccdcd1f0 100644 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png and b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00002.png b/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00002.png deleted file mode 100644 index 1c9156c31..000000000 Binary files a/tests/snapshots/nanos/test_sign_psbt_with_segwit_v16_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00000.png b/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00000.png deleted file mode 100644 index 915ae0921..000000000 Binary files a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00000.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00001.png b/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00001.png deleted file mode 100644 index 3bc200d4c..000000000 Binary files a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00001.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00002.png b/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00002.png deleted file mode 100644 index 370bc50fa..000000000 Binary files a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00003.png b/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00003.png deleted file mode 100644 index 53ae65195..000000000 Binary files a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_1_0/00003.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00000.png b/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00000.png deleted file mode 100644 index 94066967e..000000000 Binary files a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00000.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00001.png b/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00001.png deleted file mode 100644 index f3f350a36..000000000 Binary files a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00001.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00002.png b/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00002.png deleted file mode 100644 index 07df4915d..000000000 Binary files a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00003.png b/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00003.png deleted file mode 100644 index 53ae65195..000000000 Binary files a/tests/snapshots/nanosp/test_register_wallet_invalid_pubkey_version_2_0/00003.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_input_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_output_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_all_anyone_sign_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_all_input_modified_0_0/00003.png b/tests/snapshots/nanosp/test_sighash_all_input_modified_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_input_modified_0_0/00003.png and b/tests/snapshots/nanosp/test_sighash_all_input_modified_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00000.png b/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00000.png and b/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00001.png b/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00001.png and b/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00002.png b/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_all_input_modified_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_all_output_modified_0_0/00003.png b/tests/snapshots/nanosp/test_sighash_all_output_modified_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_output_modified_0_0/00003.png and b/tests/snapshots/nanosp/test_sighash_all_output_modified_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00000.png b/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00000.png and b/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00001.png b/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00001.png and b/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00002.png b/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_all_output_modified_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_0/00003.png b/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_0/00003.png and b/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00000.png b/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00000.png and b/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00001.png b/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00001.png and b/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00002.png b/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_all_sign_psbt_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_input_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_output_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_none_anyone_sign_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_none_input_modified_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_none_input_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_input_modified_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_none_input_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_none_input_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_none_output_modified_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_none_output_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_output_modified_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_none_output_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_none_output_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_none_sign_psbt_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_0_0/00003.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_0_0/00003.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00000.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00000.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00001.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00001.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00002.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00000.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00000.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00001.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00001.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00002.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash2_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00000.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00000.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00001.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00001.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00002.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash3_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00000.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00000.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00001.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00001.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00002.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash81_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00000.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00000.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00001.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00001.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00002.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash82_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00000.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00000.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00001.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00001.png and b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00002.png b/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_segwitv0_sighash83_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_input_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_output_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_single_anyone_sign_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_single_input_modified_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_single_input_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_input_modified_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_single_input_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_single_input_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_single_output_different_index_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_single_output_same_index_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_0/00003.png b/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_0/00003.png and b/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00000.png b/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00000.png and b/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00001.png b/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00001.png and b/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00002.png b/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_single_sign_psbt_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_unsupported_0_0/00003.png b/tests/snapshots/nanosp/test_sighash_unsupported_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_unsupported_0_0/00003.png and b/tests/snapshots/nanosp/test_sighash_unsupported_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00000.png b/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00000.png and b/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00001.png b/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00001.png and b/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00002.png b/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_unsupported_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_0/00003.png b/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_0/00003.png and b/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00000.png b/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00000.png and b/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00001.png b/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00001.png and b/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00002.png b/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sighash_unsupported_for_segwitv0_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00002.png and b/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00002.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png index ffdae22ce..1562d40df 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png index 421dfebce..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_highfee_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_highfee_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_highfee_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_highfee_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00000.png index ffdae22ce..7a139ba8e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00001.png index 0a5b3ed3c..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_highfee_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_0_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_0_0/00002.png and b/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_0_0/00002.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00000.png index ffdae22ce..184d002d4 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00001.png index 312ef94eb..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_miniscript_multikey_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_0_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_0_0/00002.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_0_0/00002.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00000.png index ffdae22ce..78a269ed2 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00001.png index 9711df4e1..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png index ffdae22ce..78a269ed2 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png index 9711df4e1..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_0_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_0_0/00002.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_0_0/00002.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00000.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00000.png index ffdae22ce..73bcd7be8 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00001.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00001.png index e28e418f7..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_0_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_0_0/00002.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_0_0/00002.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00000.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00000.png index ffdae22ce..73bcd7be8 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00001.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00001.png index e28e418f7..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_multisig_wsh_v1_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00000.png index ffdae22ce..905cdba55 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00001.png index 42088ca1d..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png index ffdae22ce..905cdba55 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png index 42088ca1d..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_large_amount_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png index ffdae22ce..70f4c453d 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png index cc9e51b57..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png index ffdae22ce..70f4c453d 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png index cc9e51b57..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png index ffdae22ce..70f4c453d 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png index cc9e51b57..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png index ffdae22ce..70f4c453d 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png index cc9e51b57..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png index ffdae22ce..f71b3a662 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png index 0a11ccdf7..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png index ffdae22ce..f71b3a662 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png index 0a11ccdf7..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_0/00004.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_0/00004.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_0/00004.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png index ffdae22ce..7a3d318ff 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png index 53d797266..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00004.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00004.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00004.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png index ffdae22ce..7a3d318ff 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png index 53d797266..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00004.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00004.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00004.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png index ffdae22ce..7a3d318ff 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png index 53d797266..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png index ffdae22ce..25f4bd2ba 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png index bf03a0f93..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png index ffdae22ce..25f4bd2ba 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png index bf03a0f93..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png index 570ce28d5..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png and b/tests/snapshots/nanosp/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png index ffdae22ce..43fdfdd3c 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png index cba3ca488..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_all_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png index ffdae22ce..43fdfdd3c 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png index cba3ca488..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png index ffdae22ce..43fdfdd3c 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png index cba3ca488..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00000.png index ffdae22ce..43fdfdd3c 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00001.png index cba3ca488..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_taproot_1to2_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_0_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_0_0/00002.png and b/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_0_0/00002.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png index ffdae22ce..6af6144d6 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png index 624b4ad05..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_tr_script_pk_sighash_all_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_2_0/00004.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_2_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_2_0/00004.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_2_0/00004.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_3_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_3_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_3_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_3_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_4_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_4_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_4_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_4_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00000.png index ffdae22ce..223063c8a 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00001.png index f62193def..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_0_5_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_2_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_2_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_2_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_2_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_3_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_3_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_3_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_3_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00000.png index ffdae22ce..223063c8a 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00001.png index f62193def..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_1_4_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_1_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_1_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_1_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_2_0/00004.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_2_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_2_0/00004.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_2_0/00004.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_3_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_3_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_3_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_3_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00000.png index ffdae22ce..223063c8a 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00001.png index f62193def..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_external_inputs_2_4_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_0_0/00003.png b/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_0_0/00003.png and b/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_0_0/00003.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00000.png b/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00000.png index ffdae22ce..80f6eb6a4 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00001.png b/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00001.png index e5a41b927..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_naked_opreturn_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_0_0/00005.png b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_0_0/00005.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_0_0/00005.png and b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_0_0/00005.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00000.png b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00000.png index ffdae22ce..80f6eb6a4 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00001.png b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00001.png index e5a41b927..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_0_0/00005.png b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_0_0/00005.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_0_0/00005.png and b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_0_0/00005.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00000.png b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00000.png index ffdae22ce..80f6eb6a4 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00001.png b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00001.png index e5a41b927..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00002.png b/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_opreturn_v1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_0/00004.png b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_0/00004.png and b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_0/00004.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00000.png index ffdae22ce..cc1210f5c 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00001.png index 311426246..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_0/00004.png b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_0/00004.png and b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_0/00004.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png index ffdae22ce..cc1210f5c 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png and b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png index 311426246..1366e8dae 100644 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png and b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00002.png b/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanosp/test_sign_psbt_with_segwit_v16_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00000.png b/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00000.png deleted file mode 100644 index 915ae0921..000000000 Binary files a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00000.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00001.png b/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00001.png deleted file mode 100644 index 3bc200d4c..000000000 Binary files a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00001.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00002.png b/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00002.png deleted file mode 100644 index 370bc50fa..000000000 Binary files a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00003.png b/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00003.png deleted file mode 100644 index 53ae65195..000000000 Binary files a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_1_0/00003.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00000.png b/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00000.png deleted file mode 100644 index 94066967e..000000000 Binary files a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00000.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00001.png b/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00001.png deleted file mode 100644 index f3f350a36..000000000 Binary files a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00001.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00002.png b/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00002.png deleted file mode 100644 index 07df4915d..000000000 Binary files a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00003.png b/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00003.png deleted file mode 100644 index 53ae65195..000000000 Binary files a/tests/snapshots/nanox/test_register_wallet_invalid_pubkey_version_2_0/00003.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_0/00003.png b/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00000.png b/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00001.png b/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00002.png b/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_input_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_0/00003.png b/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00000.png b/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00001.png b/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00002.png b/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_output_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_0/00003.png b/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00000.png b/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00001.png b/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00002.png b/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_all_anyone_sign_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_all_input_modified_0_0/00003.png b/tests/snapshots/nanox/test_sighash_all_input_modified_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_input_modified_0_0/00003.png and b/tests/snapshots/nanox/test_sighash_all_input_modified_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00000.png b/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00000.png and b/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00001.png b/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00001.png and b/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00002.png b/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_all_input_modified_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_all_output_modified_0_0/00003.png b/tests/snapshots/nanox/test_sighash_all_output_modified_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_output_modified_0_0/00003.png and b/tests/snapshots/nanox/test_sighash_all_output_modified_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00000.png b/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00000.png and b/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00001.png b/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00001.png and b/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00002.png b/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_all_output_modified_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_0/00003.png b/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_0/00003.png and b/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00000.png b/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00000.png and b/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00001.png b/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00001.png and b/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00002.png b/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_all_sign_psbt_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_0/00003.png b/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00000.png b/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00001.png b/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00002.png b/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_input_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_0/00003.png b/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00000.png b/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00001.png b/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00002.png b/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_output_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_0/00003.png b/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00000.png b/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00001.png b/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00002.png b/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_none_anyone_sign_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_none_input_modified_1_0/00003.png b/tests/snapshots/nanox/test_sighash_none_input_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_input_modified_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_none_input_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00000.png b/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00001.png b/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00002.png b/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_none_input_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_none_output_modified_1_0/00003.png b/tests/snapshots/nanox/test_sighash_none_output_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_output_modified_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_none_output_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00000.png b/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00001.png b/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00002.png b/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_none_output_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_0/00003.png b/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00000.png b/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00001.png b/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00002.png b/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_none_sign_psbt_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_0_0/00003.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_0_0/00003.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00000.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00000.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00001.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00001.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00002.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_1_0/00003.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00000.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00000.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00001.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00001.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00002.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash2_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_1_0/00003.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00000.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00000.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00001.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00001.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00002.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash3_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_1_0/00003.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00000.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00000.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00001.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00001.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00002.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash81_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_1_0/00003.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00000.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00000.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00001.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00001.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00002.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash82_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_1_0/00003.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00000.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00000.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00001.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00001.png and b/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00002.png b/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_segwitv0_sighash83_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_0/00003.png b/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00000.png b/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00001.png b/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00002.png b/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_input_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_0/00003.png b/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00000.png b/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00001.png b/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00002.png b/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_output_changed_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_0/00003.png b/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00000.png b/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00001.png b/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00002.png b/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_single_anyone_sign_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_single_input_modified_1_0/00003.png b/tests/snapshots/nanox/test_sighash_single_input_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_input_modified_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_single_input_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00000.png b/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00001.png b/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00002.png b/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_single_input_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_0/00003.png b/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00000.png b/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00001.png b/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00002.png b/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_single_output_different_index_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_0/00003.png b/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00000.png b/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00000.png index ffdae22ce..4033d25ff 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00001.png b/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00001.png index a84aced09..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00002.png b/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_single_output_same_index_modified_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_0/00003.png b/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_0/00003.png and b/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00000.png b/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00000.png and b/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00001.png b/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00001.png and b/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00002.png b/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_single_sign_psbt_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_unsupported_0_0/00003.png b/tests/snapshots/nanox/test_sighash_unsupported_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_unsupported_0_0/00003.png and b/tests/snapshots/nanox/test_sighash_unsupported_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_unsupported_0_1/00000.png b/tests/snapshots/nanox/test_sighash_unsupported_0_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_unsupported_0_1/00000.png and b/tests/snapshots/nanox/test_sighash_unsupported_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_unsupported_0_1/00001.png b/tests/snapshots/nanox/test_sighash_unsupported_0_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_unsupported_0_1/00001.png and b/tests/snapshots/nanox/test_sighash_unsupported_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_unsupported_0_1/00002.png b/tests/snapshots/nanox/test_sighash_unsupported_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_unsupported_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_0/00003.png b/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_0/00003.png and b/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00000.png b/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00000.png index ffdae22ce..937df53d4 100644 Binary files a/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00000.png and b/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00001.png b/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00001.png index 3d1922e56..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00001.png and b/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00002.png b/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sighash_unsupported_for_segwitv0_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00002.png and b/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_0_0/00002.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png index ffdae22ce..1562d40df 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png index 421dfebce..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_against_wrong_tapleaf_hash_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_highfee_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_highfee_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_highfee_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_highfee_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00000.png index ffdae22ce..7a139ba8e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00001.png index 0a5b3ed3c..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_highfee_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_0_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_0_0/00002.png and b/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_0_0/00002.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00000.png index ffdae22ce..184d002d4 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00001.png index 312ef94eb..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_miniscript_multikey_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_0_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_0_0/00002.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_0_0/00002.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00000.png index ffdae22ce..78a269ed2 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00001.png index 9711df4e1..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_0_0/00002.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png index ffdae22ce..78a269ed2 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png index 9711df4e1..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_sh_wsh_missing_nonwitnessutxo_2_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_0_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_0_0/00002.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_0_0/00002.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00000.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00000.png index ffdae22ce..73bcd7be8 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00000.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00001.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00001.png index e28e418f7..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00001.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_0_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_0_0/00002.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_0_0/00002.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00000.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00000.png index ffdae22ce..73bcd7be8 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00000.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00001.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00001.png index e28e418f7..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00001.png and b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_multisig_wsh_v1_2_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00000.png index ffdae22ce..905cdba55 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00001.png index 42088ca1d..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png index ffdae22ce..905cdba55 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png index 42088ca1d..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_large_amount_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png index ffdae22ce..70f4c453d 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png index cc9e51b57..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png index ffdae22ce..70f4c453d 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png index cc9e51b57..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_0_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png index ffdae22ce..70f4c453d 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png index cc9e51b57..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_other_encodings_1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png index ffdae22ce..70f4c453d 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png index cc9e51b57..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_pkh_1to1_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png index ffdae22ce..f71b3a662 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png index 0a11ccdf7..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png index ffdae22ce..f71b3a662 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png index 0a11ccdf7..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_sh_wpkh_1to2_v1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png index ffdae22ce..97499543f 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png index 180698115..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_1to2_v1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_0/00004.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_0/00004.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_0/00004.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png index ffdae22ce..7a3d318ff 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png index 53d797266..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00004.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00004.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_0/00004.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png index ffdae22ce..7a3d318ff 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png index 53d797266..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_missing_nonwitnessutxo_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00004.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00004.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_0/00004.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png index ffdae22ce..7a3d318ff 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png index 53d797266..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_2to2_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png index ffdae22ce..25f4bd2ba 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png index bf03a0f93..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png index ffdae22ce..25f4bd2ba 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png index bf03a0f93..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_4to3_v1_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png index 570ce28d5..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png and b/tests/snapshots/nanox/test_sign_psbt_singlesig_wpkh_selftransfer_0_0/00002.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png index ffdae22ce..43fdfdd3c 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png index cba3ca488..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_all_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png index ffdae22ce..43fdfdd3c 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png index cba3ca488..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_0_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png index ffdae22ce..43fdfdd3c 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png index cba3ca488..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_sighash_default_1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00000.png index ffdae22ce..43fdfdd3c 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00001.png index cba3ca488..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_taproot_1to2_v1_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_0_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_0_0/00002.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_0_0/00002.png and b/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_0_0/00002.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png index ffdae22ce..6af6144d6 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png index 624b4ad05..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_tr_script_pk_sighash_all_1_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_2_0/00004.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_2_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_2_0/00004.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_2_0/00004.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_3_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_3_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_3_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_3_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_4_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_4_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_4_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_4_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00000.png index ffdae22ce..223063c8a 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00001.png index f62193def..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_0_5_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_2_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_2_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_2_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_2_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_3_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_3_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_3_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_3_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00000.png index ffdae22ce..223063c8a 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00001.png index f62193def..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_1_4_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_1_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_1_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_1_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_1_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_2_0/00004.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_2_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_2_0/00004.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_2_0/00004.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_3_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_3_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_3_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_3_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00000.png index ffdae22ce..223063c8a 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00001.png index f62193def..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_external_inputs_2_4_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_0_0/00003.png b/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_0_0/00003.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_0_0/00003.png and b/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_0_0/00003.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00000.png b/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00000.png index ffdae22ce..80f6eb6a4 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00000.png and b/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00001.png b/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00001.png index e5a41b927..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00001.png and b/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_naked_opreturn_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_0_0/00005.png b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_0_0/00005.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_0_0/00005.png and b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_0_0/00005.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00000.png b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00000.png index ffdae22ce..80f6eb6a4 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00000.png and b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00001.png b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00001.png index e5a41b927..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00001.png and b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_0_0/00005.png b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_0_0/00005.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_0_0/00005.png and b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_0_0/00005.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00000.png b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00000.png index ffdae22ce..80f6eb6a4 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00000.png and b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00001.png b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00001.png index e5a41b927..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00001.png and b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00002.png b/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_opreturn_v1_1_0/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_0/00004.png b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_0/00004.png and b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_0/00004.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00000.png index ffdae22ce..cc1210f5c 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00001.png index 311426246..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_0_1/00002.png and /dev/null differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_0/00004.png b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_0/00004.png index 53ae65195..adea5145e 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_0/00004.png and b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_0/00004.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png index ffdae22ce..cc1210f5c 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png and b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00000.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png index 311426246..1366e8dae 100644 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png and b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00001.png differ diff --git a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00002.png b/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00002.png deleted file mode 100644 index 570ce28d5..000000000 Binary files a/tests/snapshots/nanox/test_sign_psbt_with_segwit_v16_v1_0_1/00002.png and /dev/null differ diff --git a/tests/test_e2e_miniscript.py b/tests/test_e2e_miniscript.py index b925efad9..2aac5c0b1 100644 --- a/tests/test_e2e_miniscript.py +++ b/tests/test_e2e_miniscript.py @@ -161,7 +161,7 @@ def test_e2e_miniscript_one_of_two_1(navigator: Navigator, firmware: Firmware, c ]) run_test_e2e(navigator, client, wallet_policy, [], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_one_of_two_2(navigator: Navigator, firmware: Firmware, client: RaggerClient, @@ -181,7 +181,7 @@ def test_e2e_miniscript_one_of_two_2(navigator: Navigator, firmware: Firmware, c ]) run_test_e2e(navigator, client, wallet_policy, [_], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_2fa(navigator: Navigator, firmware: Firmware, client: RaggerClient, @@ -201,7 +201,7 @@ def test_e2e_miniscript_2fa(navigator: Navigator, firmware: Firmware, client: Ra ]) run_test_e2e(navigator, client, wallet_policy, [core_wallet_name], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_decaying_3of3(navigator: Navigator, firmware: Firmware, client: @@ -223,7 +223,7 @@ def test_e2e_miniscript_decaying_3of3(navigator: Navigator, firmware: Firmware, ]) run_test_e2e(navigator, client, wallet_policy, [core_wallet_name1, core_wallet_name2], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_bolt3_offered_htlc(navigator: Navigator, firmware: Firmware, client: @@ -246,7 +246,7 @@ def test_e2e_miniscript_bolt3_offered_htlc(navigator: Navigator, firmware: Firmw ]) run_test_e2e(navigator, client, wallet_policy, [core_wallet_name1, core_wallet_name2], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_bolt3_received_htlc(navigator: Navigator, firmware: Firmware, client: @@ -269,7 +269,7 @@ def test_e2e_miniscript_bolt3_received_htlc(navigator: Navigator, firmware: Firm ]) run_test_e2e(navigator, client, wallet_policy, [core_wallet_name1, core_wallet_name2], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_me_or_3of5(navigator: Navigator, firmware: Firmware, client: @@ -296,7 +296,7 @@ def test_e2e_miniscript_me_or_3of5(navigator: Navigator, firmware: Firmware, cli ]) run_test_e2e(navigator, client, wallet_policy, [], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_me_large_vault(navigator: Navigator, firmware: Firmware, client: @@ -328,7 +328,7 @@ def test_e2e_miniscript_me_large_vault(navigator: Navigator, firmware: Firmware, ]) run_test_e2e(navigator, client, wallet_policy, [], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_me_and_bob_or_me_and_carl_1(navigator: Navigator, firmware: Firmware, @@ -357,7 +357,7 @@ def test_e2e_miniscript_me_and_bob_or_me_and_carl_1(navigator: Navigator, firmwa ]) run_test_e2e(navigator, client, wallet_policy, [core_wallet_name1], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_nanos_large_policy(navigator: Navigator, firmware: Firmware, client: @@ -391,7 +391,7 @@ def test_e2e_miniscript_nanos_large_policy(navigator: Navigator, firmware: Firmw run_test_e2e(navigator, client, wallet_policy, [core_wallet_name1, core_wallet_name2, core_wallet_name3], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_miniscript_policy_with_a(navigator: Navigator, firmware: Firmware, client: @@ -421,7 +421,7 @@ def test_e2e_miniscript_policy_with_a(navigator: Navigator, firmware: Firmware, ]) run_test_e2e(navigator, client, wallet_policy, [core_wallet_name3], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_invalid_miniscript(navigator: Navigator, firmware: Firmware, client: RaggerClient, diff --git a/tests/test_e2e_multisig.py b/tests/test_e2e_multisig.py index 4901b080e..f0a35fddf 100644 --- a/tests/test_e2e_multisig.py +++ b/tests/test_e2e_multisig.py @@ -37,11 +37,13 @@ def run_test(navigator: Navigator, client: RaggerClient, wallet_policy: WalletPo assert wallet_id == wallet_policy.id assert hmac.compare_digest( - hmac.new(speculos_globals.wallet_registration_key, wallet_id, sha256).digest(), + hmac.new(speculos_globals.wallet_registration_key, + wallet_id, sha256).digest(), wallet_hmac, ) - address_hww = client.get_wallet_address(wallet_policy, wallet_hmac, 0, 3, False) + address_hww = client.get_wallet_address( + wallet_policy, wallet_hmac, 0, 3, False) # ==> verify the address matches what bitcoin-core computes receive_descriptor = wallet_policy.get_descriptor(change=False) @@ -94,7 +96,8 @@ def run_test(navigator: Navigator, client: RaggerClient, wallet_policy: WalletPo out_address: Decimal("0.01") }, options={ - "changePosition": 1 # We need a fixed position to be able to know how to navigate in the flows + # We need a fixed position to be able to know how to navigate in the flows + "changePosition": 1 } ) @@ -109,8 +112,10 @@ def run_test(navigator: Navigator, client: RaggerClient, wallet_policy: WalletPo instructions=instructions_sign_psbt, testname=f"{test_name}_sign") - n_internal_keys = count_internal_keys(speculos_globals.seed, "test", wallet_policy) - assert len(hww_sigs) == n_internal_keys * len(psbt.inputs) # should be true as long as all inputs are internal + n_internal_keys = count_internal_keys( + speculos_globals.seed, "test", wallet_policy) + # should be true as long as all inputs are internal + assert len(hww_sigs) == n_internal_keys * len(psbt.inputs) for i, part_sig in hww_sigs: psbt.inputs[i].partial_sigs[part_sig.pubkey] = part_sig.signature @@ -121,7 +126,8 @@ def run_test(navigator: Navigator, client: RaggerClient, wallet_policy: WalletPo partial_psbts = [signed_psbt_hww_b64] for core_wallet_name in core_wallet_names: - partial_psbts.append(get_wallet_rpc(core_wallet_name).walletprocesspsbt(psbt_b64)["psbt"]) + partial_psbts.append(get_wallet_rpc( + core_wallet_name).walletprocesspsbt(psbt_b64)["psbt"]) # ==> finalize the psbt, extract tx and broadcast combined_psbt = rpc.combinepsbt(partial_psbts) @@ -151,7 +157,8 @@ def test_e2e_multisig_2_of_2(navigator: Navigator, firmware: Firmware, client: R ) run_test(navigator, client, wallet_policy, [core_wallet_name], rpc, rpc_test_wallet, - speculos_globals, e2e_register_wallet_instruction(firmware), + speculos_globals, e2e_register_wallet_instruction( + firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) @@ -184,7 +191,7 @@ def test_e2e_multisig_multiple_internal_keys(navigator: Navigator, firmware: Fir run_test(navigator, client, wallet_policy, [core_wallet_name_3], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) @@ -212,9 +219,11 @@ def test_e2e_multisig_16_of_16(navigator: Navigator, firmware: Firmware, client: address_type=AddressType.WIT, threshold=2, sorted=True, - keys_info=core_xpub_origs + [f"[{speculos_globals.master_key_fingerprint.hex()}/{path}]{internal_xpub}"], + keys_info=core_xpub_origs + + [f"[{speculos_globals.master_key_fingerprint.hex()}/{path}]{internal_xpub}"], ) run_test(navigator, client, wallet_policy, core_wallet_names, rpc, rpc_test_wallet, - speculos_globals. e2e_register_wallet_instruction(firmware), + speculos_globals. e2e_register_wallet_instruction( + firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) diff --git a/tests/test_e2e_tapscripts.py b/tests/test_e2e_tapscripts.py index 327d368bf..0d20f8cba 100644 --- a/tests/test_e2e_tapscripts.py +++ b/tests/test_e2e_tapscripts.py @@ -171,7 +171,7 @@ def test_e2e_tapscript_one_of_two_keypath(navigator: Navigator, firmware: Firmwa ]) run_test_e2e(navigator, client, wallet_policy, [], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_tapscript_one_of_two_scriptpath(navigator: Navigator, firmware: Firmware, client: @@ -191,7 +191,7 @@ def test_e2e_tapscript_one_of_two_scriptpath(navigator: Navigator, firmware: Fir ]) run_test_e2e(navigator, client, wallet_policy, [], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_tapscript_one_of_three_keypath(navigator: Navigator, firmware: Firmware, client: @@ -213,7 +213,7 @@ def test_e2e_tapscript_one_of_three_keypath(navigator: Navigator, firmware: Firm ]) run_test_e2e(navigator, client, wallet_policy, [], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_tapscript_one_of_three_scriptpath(navigator: Navigator, firmware: Firmware, client: @@ -235,7 +235,7 @@ def test_e2e_tapscript_one_of_three_scriptpath(navigator: Navigator, firmware: F ]) run_test_e2e(navigator, client, wallet_policy, [], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_tapscript_multi_a_2of2(navigator: Navigator, firmware: Firmware, client: @@ -256,7 +256,7 @@ def test_e2e_tapscript_multi_a_2of2(navigator: Navigator, firmware: Firmware, cl ]) run_test_e2e(navigator, client, wallet_policy, [core_wallet_name2], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_tapscript_maxdepth(navigator: Navigator, firmware: Firmware, client: RaggerClient, @@ -286,7 +286,7 @@ def test_e2e_tapscript_maxdepth(navigator: Navigator, firmware: Firmware, client keys_info=keys_info) run_test_e2e(navigator, client, wallet_policy, [], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_tapscript_large(navigator: Navigator, firmware: Firmware, client: RaggerClient, @@ -320,7 +320,7 @@ def test_e2e_tapscript_large(navigator: Navigator, firmware: Firmware, client: R keys_info=keys_info) run_test_e2e(navigator, client, wallet_policy, [core_wallet_name], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_tapminiscript_keypath_or_decaying_3of3(navigator: Navigator, firmware: Firmware, @@ -345,7 +345,7 @@ def test_e2e_tapminiscript_keypath_or_decaying_3of3(navigator: Navigator, firmwa ]) run_test_e2e(navigator, client, wallet_policy, [core_name_2, core_name_3], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_tapminiscript_with_hash256(navigator: Navigator, firmware: Firmware, client: @@ -367,7 +367,7 @@ def test_e2e_tapminiscript_with_hash256(navigator: Navigator, firmware: Firmware ]) run_test_e2e(navigator, client, wallet_policy, [core_name_3], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_e2e_tapminiscript_mixed_leaves(navigator: Navigator, firmware: Firmware, client: @@ -392,7 +392,7 @@ def test_e2e_tapminiscript_mixed_leaves(navigator: Navigator, firmware: Firmware ]) run_test_e2e(navigator, client, wallet_policy, [], rpc, rpc_test_wallet, speculos_globals, - e2e_register_wallet_instruction(firmware), e2e_sign_psbt_instruction(firmware), test_name) + e2e_register_wallet_instruction(firmware, wallet_policy.n_keys), e2e_sign_psbt_instruction(firmware), test_name) def test_invalid_tapminiscript(navigator: Navigator, firmware: Firmware, client: RaggerClient, diff --git a/tests/test_sign_psbt.py b/tests/test_sign_psbt.py index 2e3cad1e3..089634949 100644 --- a/tests/test_sign_psbt.py +++ b/tests/test_sign_psbt.py @@ -115,7 +115,7 @@ def test_sign_psbt_singlesig_sh_wpkh_1to2(navigator: Navigator, firmware: Firmwa def test_sign_psbt_highfee(navigator: Navigator, firmware: Firmware, client: RaggerClient, test_name: str): # Transactions with fees higher than 10% of total amount - # An aditional warning is shown. + # An additional warning is shown. # PSBT for a wrapped segwit 1-input 2-output spend (1 change address) psbt = open_psbt_from_file(f"{tests_root}/psbt/singlesig/sh-wpkh-1to2.psbt")