diff --git a/Makefile b/Makefile index eea5490..e4bd732 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,8 @@ ifeq ($(BOLOS_SDK),) $(error Environment variable BOLOS_SDK is not set) endif -include $(BOLOS_SDK)/Makefile.defines + +include $(BOLOS_SDK)/Makefile.target ######################################## # Mandatory configuration # @@ -26,7 +27,7 @@ include $(BOLOS_SDK)/Makefile.defines APPNAME = Eos APPVERSION_M=1 -APPVERSION_N=5 +APPVERSION_N=6 APPVERSION_P=0 APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P) @@ -35,11 +36,11 @@ APP_SOURCE_PATH += src # Application icons following guidelines: # https://developers.ledger.com/docs/embedded-app/design-requirements/#device-icon -ICON_NANOS = icons/nanos_app_eos.gif ICON_NANOX = icons/nano_app_eos.gif ICON_NANOSP = icons/nano_app_eos.gif ICON_STAX = icons/stax_app_eos.gif ICON_FLEX = icons/flex_app_eos.gif +ICON_APEX_P = icons/apex_app_eos.png # Application allowed derivation curves. # Possibles curves are: secp256k1, secp256r1, ed25519 and bls12381g1 @@ -90,6 +91,7 @@ ENABLE_BLUETOOTH = 1 ENABLE_NBGL_QRCODE = 1 #ENABLE_NBGL_KEYBOARD = 1 #ENABLE_NBGL_KEYPAD = 1 +ENABLE_NBGL_FOR_NANO_DEVICES = 1 ######################################## # Features disablers # diff --git a/README.md b/README.md index baec200..54c7c1f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # app-eos -Eos wallet application framework for Ledger devices +Eos wallet application framework for Ledger devices (Nano S Plus, Nano X, Flex, Stax, Apex) This follows the specification available in the doc/ folder @@ -91,11 +91,11 @@ make DEBUG=1 # compile optionally with PRINTF You can choose which device to compile and load for by setting the `BOLOS_SDK` environment variable to the following values: -- `BOLOS_SDK=$NANOS_SDK` - `BOLOS_SDK=$NANOX_SDK` - `BOLOS_SDK=$NANOSP_SDK` - `BOLOS_SDK=$STAX_SDK` - `BOLOS_SDK=$FLEX_SDK` +- `BOLOS_SDK=$APEX_P_SDK` ### Loading on a physical device @@ -164,16 +164,16 @@ pip install -r tests/functional/requirements.txt Then you can: -Run the functional tests (here for nanos but available for any device once you have built the binaries): +Run the functional tests (here for nanosp but available for any device once you have built the binaries): ```shell -pytest tests/functional/ --tb=short -v --device nanos +pytest tests/functional/ --tb=short -v --device nanosp ``` Or run your app directly with Speculos ```shell -speculos --model nanos build/nanos/bin/app.elf +speculos --model nanosp build/nanosp/bin/app.elf ``` ### macOS / Windows diff --git a/docs/speculos-emulator-setup.md b/docs/speculos-emulator-setup.md index 2942fda..303bbd8 100644 --- a/docs/speculos-emulator-setup.md +++ b/docs/speculos-emulator-setup.md @@ -9,7 +9,7 @@ pip install speculos ## Run and use the emulator ```shell -./speculos.py build/nanos/bin/app.elf +./speculos.py build/nanosp/bin/app.elf ``` > You can go to `http://127.0.0.1:5000/` for another interface and more data diff --git a/glyphs/app_eos_48px.png b/glyphs/app_eos_48px.png new file mode 100644 index 0000000..e88a159 Binary files /dev/null and b/glyphs/app_eos_48px.png differ diff --git a/glyphs/home_app_eos.gif b/glyphs/home_app_eos.gif new file mode 100644 index 0000000..712105c Binary files /dev/null and b/glyphs/home_app_eos.gif differ diff --git a/glyphs/nanos_badge_eos.gif b/glyphs/nanos_badge_eos.gif deleted file mode 100644 index 0ff08d0..0000000 Binary files a/glyphs/nanos_badge_eos.gif and /dev/null differ diff --git a/icons/apex_app_eos.png b/icons/apex_app_eos.png new file mode 100644 index 0000000..af4414d Binary files /dev/null and b/icons/apex_app_eos.png differ diff --git a/icons/nanos_app_eos.gif b/icons/nanos_app_eos.gif deleted file mode 100644 index 829f307..0000000 Binary files a/icons/nanos_app_eos.gif and /dev/null differ diff --git a/ledger_app.toml b/ledger_app.toml index 82bdcc4..4a0bc91 100644 --- a/ledger_app.toml +++ b/ledger_app.toml @@ -1,7 +1,7 @@ [app] build_directory = "./" sdk = "C" -devices = ["nanos", "nanox", "nanos+", "stax", "flex"] +devices = ["nanox", "nanos+", "stax", "flex", "apex_p"] [tests] pytest_directory = "./tests/functional" diff --git a/src/eos_types.c b/src/eos_types.c index 52a85f2..b35b5a7 100644 --- a/src/eos_types.c +++ b/src/eos_types.c @@ -23,6 +23,8 @@ #include #include "string.h" +#define MAX_SYMBOL_PRECISION 0xff + static const char *charmap = ".12345abcdefghijklmnopqrstuvwxyz"; name_t buffer_to_name_type(uint8_t *in, uint32_t size) { @@ -120,7 +122,7 @@ uint8_t asset_to_string(asset_t *asset, char *out, uint32_t size) { p = (int64_t) symbol_precision(asset->symbol); - char fraction[p + 1]; + char fraction[MAX_SYMBOL_PRECISION + 1]; fraction[p] = 0; int64_t change = asset->amount % p10; diff --git a/src/eos_utils.c b/src/eos_utils.c index 06c4739..a3f8032 100644 --- a/src/eos_utils.c +++ b/src/eos_utils.c @@ -20,6 +20,10 @@ #include "os.h" #include "cx.h" +#define MAX_BIN_SIZE \ + 37 // Adjust as needed (current value enough for b58enc usage in compressed_public_key_to_wif) +#define MAX_BUF_SIZE MAX_BIN_SIZE * 138 / 100 + 1 // 52 + unsigned char const BASE58ALPHABET[] = {'1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', @@ -34,7 +38,8 @@ bool b58enc(uint8_t *bin, uint32_t binsz, char *b58, uint32_t *b58sz) { while (zcount < binsz && !bin[zcount]) ++zcount; size = (binsz - zcount) * 138 / 100 + 1; - uint8_t buf[size]; + LEDGER_ASSERT(size <= MAX_BUF_SIZE, "b58enc overflow : input bin too large"); + uint8_t buf[MAX_BUF_SIZE]; memset(buf, 0, size); for (i = zcount, high = size - 1; i < binsz; ++i, high = j) { diff --git a/src/ui.h b/src/ui.h index caa83be..449614a 100644 --- a/src/ui.h +++ b/src/ui.h @@ -1,5 +1,19 @@ #pragma once +#if defined(TARGET_NANOX) || defined(TARGET_NANOS2) +#define ICON_APP_EOS C_nano_app_eos +#define ICON_APP_HOME C_home_app_eos +#define ICON_APP_WARNING C_icon_warning +#elif defined(TARGET_STAX) || defined(TARGET_FLEX) +#define ICON_APP_EOS C_app_eos_64px +#define ICON_APP_HOME ICON_APP_EOS +#define ICON_APP_WARNING LARGE_WARNING_ICON +#elif defined(TARGET_APEX_P) +#define ICON_APP_EOS C_app_eos_48px +#define ICON_APP_HOME ICON_APP_EOS +#define ICON_APP_WARNING LARGE_WARNING_ICON +#endif + void ui_idle(void); void ui_display_public_key_flow(void); void ui_display_public_key_done(bool validated); diff --git a/src/ui_bagl.c b/src/ui_bagl.c deleted file mode 100644 index b7f86b9..0000000 --- a/src/ui_bagl.c +++ /dev/null @@ -1,345 +0,0 @@ -/***************************************************************************** - * Ledger App EOS. - * (c) 2022 Ledger SAS. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *****************************************************************************/ - -#ifdef HAVE_BAGL - -#include - -#include "os.h" -#include "ux.h" - -#include "glyphs.h" -#include "main.h" -#include "ui.h" -#include "config.h" - -static char actionCounter[32]; -static char confirmLabel[32]; - -// display stepped screens -static unsigned int ux_step; -static unsigned int ux_step_count; - -static char confirm_text1[16]; -static char confirm_text2[16]; - -static void display_settings(void); -static void switch_settings_contract_data(void); -static void display_next_state(uint8_t state); - -/////////////////////////////////////////////////////////////////////////////// - -UX_STEP_NOCB(ux_idle_flow_1_step, - nn, // pnn, - { - "Application", - "is ready", - }); -UX_STEP_NOCB(ux_idle_flow_2_step, - bn, - { - "Version", - APPVERSION, - }); -UX_STEP_CB(ux_idle_flow_3_step, - pb, - display_settings(), - { - &C_icon_coggle, - "Settings", - }); -UX_STEP_CB(ux_idle_flow_4_step, - pb, - os_sched_exit(-1), - { - &C_icon_dashboard_x, - "Quit", - }); - -UX_FLOW(ux_idle_flow, - &ux_idle_flow_1_step, - &ux_idle_flow_2_step, - &ux_idle_flow_3_step, - &ux_idle_flow_4_step); - -void ui_idle(void) { - // reserve a display stack slot if none yet - if (G_ux.stack_count == 0) { - ux_stack_push(); - } - - ux_flow_init(0, ux_idle_flow, NULL); -} - -/////////////////////////////////////////////////////////////////////////////// - -#if defined(TARGET_NANOS) - -UX_STEP_CB(ux_settings_flow_1_step, - bnnn_paging, - switch_settings_contract_data(), - { - .title = "Contract data", - .text = confirmLabel, - }); - -#else - -UX_STEP_CB(ux_settings_flow_1_step, - bnnn, - switch_settings_contract_data(), - { - "Contract data", - "Allow contract data", - "in transactions", - confirmLabel, - }); - -#endif - -UX_STEP_CB(ux_settings_flow_2_step, - pb, - ui_idle(), - { - &C_icon_back_x, - "Back", - }); - -UX_FLOW(ux_settings_flow, &ux_settings_flow_1_step, &ux_settings_flow_2_step); - -static void display_settings(void) { - strlcpy(confirmLabel, (is_data_allowed() ? "Allowed" : "NOT Allowed"), sizeof(confirmLabel)); - ux_flow_init(0, ux_settings_flow, NULL); -} - -static void switch_settings_contract_data(void) { - toogle_data_allowed(); - display_settings(); -} - -/////////////////////////////////////////////////////////////////////////////// - -UX_STEP_NOCB(ux_display_public_flow_1_step, - pnn, - { - &C_icon_eye, - "Verify", - "Public Key", - }); -UX_STEP_NOCB(ux_display_public_flow_2_step, - bnnn_paging, - { - .title = "Public Key", - .text = tmpCtx.publicKeyContext.address, - }); -UX_STEP_CB(ux_display_public_flow_3_step, - pb, - user_action_address_ok(), - { - &C_icon_validate_14, - "Approve", - }); -UX_STEP_CB(ux_display_public_flow_4_step, - pb, - user_action_address_cancel(), - { - &C_icon_crossmark, - "Reject", - }); - -UX_FLOW(ux_display_public_flow, - &ux_display_public_flow_1_step, - &ux_display_public_flow_2_step, - &ux_display_public_flow_3_step, - &ux_display_public_flow_4_step); - -void ui_display_public_key_flow(void) { - ux_flow_init(0, ux_display_public_flow, NULL); -} - -void ui_display_public_key_done(bool validated) { - UNUSED(validated); - // Display back the original UX - ui_idle(); -} - -/////////////////////////////////////////////////////////////////////////////// - -#define STATE_LEFT_BORDER 0 -#define STATE_VARIABLE 1 -#define STATE_RIGHT_BORDER 2 - -UX_STEP_NOCB(ux_single_action_sign_flow_1_step, - pnn, - { - &C_icon_certificate, - "Review", - confirmLabel, - }); -UX_STEP_NOCB(ux_single_action_sign_flow_2_step, - bn, - { - "Contract", - txContent.contract, - }); -UX_STEP_NOCB(ux_single_action_sign_flow_3_step, - bn, - { - "Action", - txContent.action, - }); -UX_STEP_INIT(ux_init_left_border, NULL, NULL, { display_next_state(STATE_LEFT_BORDER); }); - -UX_STEP_NOCB_INIT(ux_single_action_sign_flow_variable_step, - bnnn_paging, - { display_next_state(STATE_VARIABLE); }, - { - .title = txContent.arg.label, - .text = txContent.arg.data, - }); - -UX_STEP_INIT(ux_init_right_border, NULL, NULL, { display_next_state(STATE_RIGHT_BORDER); }); - -UX_STEP_CB(ux_single_action_sign_flow_7_step, - pbb, - user_action_sign_flow_ok(), - { - &C_icon_validate_14, - confirm_text1, - confirm_text2, - }); -UX_STEP_CB(ux_single_action_sign_flow_8_step, - pbb, - user_action_tx_cancel(), - { - &C_icon_crossmark, - "Cancel", - "signature", - }); - -UX_FLOW(ux_single_action_sign_flow, - &ux_single_action_sign_flow_1_step, - &ux_single_action_sign_flow_2_step, - &ux_single_action_sign_flow_3_step, - &ux_init_left_border, - &ux_single_action_sign_flow_variable_step, - &ux_init_right_border, - &ux_single_action_sign_flow_7_step, - &ux_single_action_sign_flow_8_step); - -static void display_next_state(uint8_t state) { - if (state == STATE_LEFT_BORDER) { - if (ux_step == 0) { - ux_step = 1; - ux_flow_next(); - } else if (ux_step == 1) { - --ux_step; - ux_flow_prev(); - } else if (ux_step > 1) { - --ux_step; - ux_flow_next(); - } - } else if (state == STATE_VARIABLE) { - printArgument(ux_step - 1, &txProcessingCtx); - } else if (state == STATE_RIGHT_BORDER) { - if (ux_step < ux_step_count) { - ++ux_step; - ux_flow_prev(); - } else if (ux_step == ux_step_count) { - ++ux_step; - ux_flow_next(); - } else if (ux_step > ux_step_count) { - ux_step = ux_step_count; - ux_flow_prev(); - } - } -} - -void ui_display_single_action_sign_flow(void) { - ux_step = 0; - ux_step_count = txContent.argumentCount; - - if (txProcessingCtx.currentActionNumber > 1) { - snprintf(confirmLabel, - sizeof(confirmLabel), - "Action #%d", - txProcessingCtx.currentActionIndex); - } else { - strlcpy(confirmLabel, "Transaction", sizeof(confirmLabel)); - } - - if (txProcessingCtx.currentActionIndex == txProcessingCtx.currentActionNumber) { - strlcpy(confirm_text1, "Sign", sizeof(confirm_text1)); - strlcpy(confirm_text2, "transaction", sizeof(confirm_text2)); - } else { - strlcpy(confirm_text1, "Accept", sizeof(confirm_text1)); - strlcpy(confirm_text2, "& review next", sizeof(confirm_text2)); - } - - ux_flow_init(0, ux_single_action_sign_flow, NULL); -} - -void ui_display_action_sign_done(parserStatus_e status, bool validated) { - UNUSED(status); - UNUSED(validated); - // Display back the original UX - ui_idle(); -} - -/////////////////////////////////////////////////////////////////////////////// - -UX_FLOW_DEF_NOCB(ux_multiple_action_sign_flow_1_step, - pnn, - { - &C_icon_certificate, - "Review", - "Transaction", - }); -UX_FLOW_DEF_NOCB(ux_multiple_action_sign_flow_2_step, - bn, // pnn, - { - "With", - actionCounter, - }); -UX_FLOW_DEF_VALID(ux_multiple_action_sign_flow_3_step, - pbb, - user_action_sign_flow_ok(), - {&C_icon_validate_14, "Continue", "review"}); -UX_FLOW_DEF_VALID(ux_multiple_action_sign_flow_4_step, - pbb, - user_action_tx_cancel(), - { - &C_icon_crossmark, - "Cancel", - "review", - }); - -UX_FLOW(ux_multiple_action_sign_flow, - &ux_multiple_action_sign_flow_1_step, - &ux_multiple_action_sign_flow_2_step, - &ux_multiple_action_sign_flow_3_step, - &ux_multiple_action_sign_flow_4_step); - -void ui_display_multiple_action_sign_flow(void) { - snprintf(actionCounter, - sizeof(actionCounter), - "%d actions", - txProcessingCtx.currentActionNumber); - ux_flow_init(0, ux_multiple_action_sign_flow, NULL); -} - -#endif diff --git a/src/ui_nbgl.c b/src/ui_nbgl.c index cc648b8..ea35513 100644 --- a/src/ui_nbgl.c +++ b/src/ui_nbgl.c @@ -73,7 +73,7 @@ void ui_idle(void) { infosList.infoContents = INFO_CONTENTS; nbgl_useCaseHomeAndSettings(APPNAME, - &C_app_eos_64px, + &ICON_APP_HOME, NULL, INIT_HOME_PAGE, &settingContents, @@ -95,7 +95,7 @@ static void display_address_callback(bool confirm) { void ui_display_public_key_flow(void) { nbgl_useCaseAddressReview(tmpCtx.publicKeyContext.address, NULL, - &C_app_eos_64px, + &ICON_APP_EOS, "Verify Eos address", NULL, display_address_callback); @@ -155,7 +155,7 @@ static nbgl_contentTagValue_t* get_multi_action_review_pair(uint8_t index) { txProcessingCtx.currentActionNumber); pair.value = review_action; pair.centeredInfo = 1; - pair.valueIcon = &C_app_eos_64px; + pair.valueIcon = &ICON_APP_EOS; return &pair; } return get_single_action_review_pair(index - 1); @@ -190,7 +190,7 @@ void ui_display_single_action_sign_flow(void) { nbgl_useCaseReview(TYPE_TRANSACTION, &pairList, - &C_app_eos_64px, + &ICON_APP_EOS, "Review transaction", NULL, "Sign transaction", @@ -223,7 +223,7 @@ void ui_display_multiple_action_sign_flow(void) { "With %d actions", txProcessingCtx.currentActionNumber); nbgl_useCaseReviewStreamingStart(TYPE_TRANSACTION, - &C_app_eos_64px, + &ICON_APP_EOS, "Review transaction", review_subtitle, review_choice_single); diff --git a/tests/functional/requirements.txt b/tests/functional/requirements.txt index 4035aec..7c72d80 100644 --- a/tests/functional/requirements.txt +++ b/tests/functional/requirements.txt @@ -1,4 +1,5 @@ -ragger[tests,speculos]>=1.6.0 +pytest +ragger[speculos,ledgerwallet]>=1.36.1 base58 bip_utils pycoin diff --git a/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00000.png b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00000.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00001.png b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00001.png new file mode 100644 index 0000000..50cb2f9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00002.png b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00002.png new file mode 100644 index 0000000..c15204b Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00003.png b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00003.png new file mode 100644 index 0000000..88ef88e Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00004.png b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00004.png new file mode 100644 index 0000000..c15204b Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00005.png b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00005.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_app_mainmenu_settings_cfg/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00000.png b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00000.png new file mode 100644 index 0000000..c4a41fe Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00001.png b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00001.png new file mode 100644 index 0000000..13e1d02 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00002.png b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00002.png new file mode 100644 index 0000000..6ce358d Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00003.png b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00003.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_accepted/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00000.png b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00000.png new file mode 100644 index 0000000..c4a41fe Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00001.png b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00001.png new file mode 100644 index 0000000..13e1d02 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00002.png b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00002.png new file mode 100644 index 0000000..0f7f5fe Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00003.png b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00003.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_get_public_key_confirm_refused/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00000.png new file mode 100644 index 0000000..920b17a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00001.png new file mode 100644 index 0000000..db6d80f Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00002.png new file mode 100644 index 0000000..436c9dd Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00003.png new file mode 100644 index 0000000..f33e1b5 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00004.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00005.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00000.png new file mode 100644 index 0000000..920b17a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00001.png new file mode 100644 index 0000000..568b814 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00002.png new file mode 100644 index 0000000..dbfe81b Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00003.png new file mode 100644 index 0000000..f33e1b5 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00004.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00005.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyram/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00000.png new file mode 100644 index 0000000..920b17a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00001.png new file mode 100644 index 0000000..e975228 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00002.png new file mode 100644 index 0000000..9cf8078 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00003.png new file mode 100644 index 0000000..f33e1b5 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00004.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00005.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_buyrambytes/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00000.png new file mode 100644 index 0000000..f3a5f5e Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00001.png new file mode 100644 index 0000000..0bc6413 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00002.png new file mode 100644 index 0000000..32f9db1 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00003.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00004.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_deleteauth/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00000.png new file mode 100644 index 0000000..920b17a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00001.png new file mode 100644 index 0000000..544b65f Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00002.png new file mode 100644 index 0000000..a77d2c1 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00003.png new file mode 100644 index 0000000..f33e1b5 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00004.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00005.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_linkauth/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00000.png new file mode 100644 index 0000000..f3a5f5e Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00001.png new file mode 100644 index 0000000..7560e5d Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00002.png new file mode 100644 index 0000000..32f9db1 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00003.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00004.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_refund/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00000.png new file mode 100644 index 0000000..f3a5f5e Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00001.png new file mode 100644 index 0000000..b193fe3 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00002.png new file mode 100644 index 0000000..32f9db1 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00003.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00004.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_sellram/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00000.png new file mode 100644 index 0000000..920b17a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00001.png new file mode 100644 index 0000000..2c44a66 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00002.png new file mode 100644 index 0000000..acf4024 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00003.png new file mode 100644 index 0000000..f33e1b5 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00004.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00005.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_unlinkauth/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00000.png new file mode 100644 index 0000000..436e87f Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00001.png new file mode 100644 index 0000000..2911ec0 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00002.png new file mode 100644 index 0000000..5e4867f Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00003.png new file mode 100644 index 0000000..2033da1 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00004.png new file mode 100644 index 0000000..b363041 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00005.png new file mode 100644 index 0000000..76daf53 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00006.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00006.png new file mode 100644 index 0000000..7a6dffc Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00006.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00007.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00007.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00007.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00008.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00008.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_updateauth/00008.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00000.png new file mode 100644 index 0000000..685db3b Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00001.png new file mode 100644 index 0000000..e95a89b Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00002.png new file mode 100644 index 0000000..cca0784 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00003.png new file mode 100644 index 0000000..be2085e Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00004.png new file mode 100644 index 0000000..bd64e09 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00005.png new file mode 100644 index 0000000..5208543 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00006.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00006.png new file mode 100644 index 0000000..d073249 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00006.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00007.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00007.png new file mode 100644 index 0000000..545a151 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00007.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00008.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00008.png new file mode 100644 index 0000000..1ff9831 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00008.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00009.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00009.png new file mode 100644 index 0000000..11b6852 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00009.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00010.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00010.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00010.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00011.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00011.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote/00011.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00000.png new file mode 100644 index 0000000..f3a5f5e Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00001.png new file mode 100644 index 0000000..6642778 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00002.png new file mode 100644 index 0000000..32f9db1 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00003.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00004.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_accepted/transaction_vote_proxy/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00000.png new file mode 100644 index 0000000..22d60e7 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00001.png new file mode 100644 index 0000000..e2aec30 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00002.png new file mode 100644 index 0000000..8c6a21d Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00003.png new file mode 100644 index 0000000..b18eb4c Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part1/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00000.png new file mode 100644 index 0000000..9524a65 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00001.png new file mode 100644 index 0000000..61b95de Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00002.png new file mode 100644 index 0000000..df810be Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00003.png new file mode 100644 index 0000000..bdbce8a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00004.png new file mode 100644 index 0000000..59a62d3 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00005.png new file mode 100644 index 0000000..40df00e Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00006.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00006.png new file mode 100644 index 0000000..8277856 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00006.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00007.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00007.png new file mode 100644 index 0000000..4aba0a2 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00007.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00008.png b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00008.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_newaccount_accepted/part2/00008.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00000.png new file mode 100644 index 0000000..920b17a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00001.png new file mode 100644 index 0000000..db6d80f Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00002.png new file mode 100644 index 0000000..436c9dd Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00003.png new file mode 100644 index 0000000..f33e1b5 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00004.png new file mode 100644 index 0000000..cf10939 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00005.png new file mode 100644 index 0000000..1d65a53 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00006.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00006.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part0/00006.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00000.png new file mode 100644 index 0000000..920b17a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00001.png new file mode 100644 index 0000000..db6d80f Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00002.png new file mode 100644 index 0000000..436c9dd Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00003.png new file mode 100644 index 0000000..f33e1b5 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00004.png new file mode 100644 index 0000000..cf10939 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00005.png new file mode 100644 index 0000000..1d65a53 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00006.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00006.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part1/00006.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00000.png new file mode 100644 index 0000000..920b17a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00001.png new file mode 100644 index 0000000..db6d80f Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00002.png new file mode 100644 index 0000000..436c9dd Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00003.png new file mode 100644 index 0000000..f33e1b5 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00004.png new file mode 100644 index 0000000..cf10939 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00005.png new file mode 100644 index 0000000..1d65a53 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00006.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00006.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part2/00006.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00000.png new file mode 100644 index 0000000..920b17a Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00000.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00001.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00001.png new file mode 100644 index 0000000..db6d80f Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00001.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00002.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00002.png new file mode 100644 index 0000000..436c9dd Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00002.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00003.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00003.png new file mode 100644 index 0000000..f33e1b5 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00003.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00004.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00004.png new file mode 100644 index 0000000..cf10939 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00004.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00005.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00005.png new file mode 100644 index 0000000..1d65a53 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00005.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00006.png b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00006.png new file mode 100644 index 0000000..189c8b9 Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_refused/part3/00006.png differ diff --git a/tests/functional/snapshots/apex_p/test_sign_transaction_unknown_fail/00000.png b/tests/functional/snapshots/apex_p/test_sign_transaction_unknown_fail/00000.png new file mode 100644 index 0000000..668d6bc Binary files /dev/null and b/tests/functional/snapshots/apex_p/test_sign_transaction_unknown_fail/00000.png differ diff --git a/tests/functional/snapshots/flex/test_app_mainmenu_settings_cfg/00003.png b/tests/functional/snapshots/flex/test_app_mainmenu_settings_cfg/00003.png index 691315b..3096dac 100644 Binary files a/tests/functional/snapshots/flex/test_app_mainmenu_settings_cfg/00003.png and b/tests/functional/snapshots/flex/test_app_mainmenu_settings_cfg/00003.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction/00000.png index 31c70a4..dae2f79 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction/00001.png index 833c2cd..02c7d56 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyram/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyram/00000.png index 31c70a4..dae2f79 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyram/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyram/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyram/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyram/00001.png index 2c78cc1..3497615 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyram/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyram/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyrambytes/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyrambytes/00000.png index 31c70a4..dae2f79 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyrambytes/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyrambytes/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyrambytes/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyrambytes/00001.png index b62c6f1..09e44d7 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyrambytes/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_buyrambytes/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_deleteauth/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_deleteauth/00000.png index 8406a2b..464fb63 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_deleteauth/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_deleteauth/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_deleteauth/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_deleteauth/00001.png index 05a7523..069220f 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_deleteauth/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_deleteauth/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_linkauth/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_linkauth/00000.png index 31c70a4..dae2f79 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_linkauth/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_linkauth/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_linkauth/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_linkauth/00001.png index fe66994..7c3dd74 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_linkauth/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_linkauth/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_refund/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_refund/00000.png index 8406a2b..464fb63 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_refund/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_refund/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_refund/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_refund/00001.png index 31c1055..c712dc3 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_refund/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_refund/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_sellram/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_sellram/00000.png index 8406a2b..464fb63 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_sellram/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_sellram/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_sellram/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_sellram/00001.png index 5285580..7f03584 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_sellram/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_sellram/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_unlinkauth/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_unlinkauth/00000.png index 31c70a4..dae2f79 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_unlinkauth/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_unlinkauth/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_unlinkauth/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_unlinkauth/00001.png index 3559cca..c84c6cb 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_unlinkauth/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_unlinkauth/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00000.png index 21a5141..4b68bd2 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00001.png index 660b5b6..32ac59c 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00004.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00004.png index fd17284..6c13e81 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00004.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00004.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00005.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00005.png index e080f9f..e07be26 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00005.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_updateauth/00005.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00001.png index e8fd412..da60ec4 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00002.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00002.png index 2b91a6e..36fd457 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00002.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00002.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00003.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00003.png index 6dc709b..5701dda 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00003.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00003.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00004.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00004.png index 87a78ca..7c7ca95 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00004.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00004.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00005.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00005.png index 2be5de3..488352c 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00005.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00005.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00006.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00006.png index 8a78a79..c78050c 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00006.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00006.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00007.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00007.png index 968ef46..9a30738 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00007.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00007.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00008.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00008.png index c044cc3..7d09e16 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00008.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00008.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00009.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00009.png index 756e3a7..4ff0b54 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00009.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote/00009.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote_proxy/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote_proxy/00000.png index 8406a2b..464fb63 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote_proxy/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote_proxy/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote_proxy/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote_proxy/00001.png index bd47e15..63511bb 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote_proxy/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_accepted/transaction_vote_proxy/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_newaccount_accepted/part1/00004.png b/tests/functional/snapshots/flex/test_sign_transaction_newaccount_accepted/part1/00004.png deleted file mode 100644 index 03a11e5..0000000 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_newaccount_accepted/part1/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_newaccount_accepted/part1/00005.png b/tests/functional/snapshots/flex/test_sign_transaction_newaccount_accepted/part1/00005.png deleted file mode 100644 index c9427e9..0000000 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_newaccount_accepted/part1/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_refused/part0/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_refused/part0/00000.png index 31c70a4..dae2f79 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_refused/part0/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_refused/part0/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_refused/part0/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_refused/part0/00001.png index 833c2cd..02c7d56 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_refused/part0/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_refused/part0/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_refused/part1/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_refused/part1/00000.png index 31c70a4..dae2f79 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_refused/part1/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_refused/part1/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_refused/part1/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_refused/part1/00001.png index 833c2cd..02c7d56 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_refused/part1/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_refused/part1/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_refused/part2/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_refused/part2/00000.png index 31c70a4..dae2f79 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_refused/part2/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_refused/part2/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_refused/part2/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_refused/part2/00001.png index 833c2cd..02c7d56 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_refused/part2/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_refused/part2/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_refused/part3/00000.png b/tests/functional/snapshots/flex/test_sign_transaction_refused/part3/00000.png index 31c70a4..dae2f79 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_refused/part3/00000.png and b/tests/functional/snapshots/flex/test_sign_transaction_refused/part3/00000.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_refused/part3/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_refused/part3/00001.png index 833c2cd..02c7d56 100644 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_refused/part3/00001.png and b/tests/functional/snapshots/flex/test_sign_transaction_refused/part3/00001.png differ diff --git a/tests/functional/snapshots/flex/test_sign_transaction_unknown_fail/00001.png b/tests/functional/snapshots/flex/test_sign_transaction_unknown_fail/00001.png deleted file mode 100644 index bcbcba3..0000000 Binary files a/tests/functional/snapshots/flex/test_sign_transaction_unknown_fail/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00000.png b/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00000.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00001.png b/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00001.png deleted file mode 100644 index 7d0f2d7..0000000 Binary files a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00002.png b/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00002.png deleted file mode 100644 index 34cf547..0000000 Binary files a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00003.png b/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00003.png deleted file mode 100644 index ea906c6..0000000 Binary files a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00004.png b/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00004.png deleted file mode 100644 index 34cf547..0000000 Binary files a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00005.png b/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00005.png deleted file mode 100644 index 55c0819..0000000 Binary files a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00006.png b/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00006.png deleted file mode 100644 index f3c01ee..0000000 Binary files a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00007.png b/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00007.png deleted file mode 100644 index 70c9092..0000000 Binary files a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00008.png b/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00008.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_app_mainmenu_settings_cfg/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00000.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00000.png deleted file mode 100644 index 620e851..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00001.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00001.png deleted file mode 100644 index e9f62b3..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00002.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00002.png deleted file mode 100644 index 4a8aecb..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00003.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00003.png deleted file mode 100644 index 6dccfd7..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00004.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00004.png deleted file mode 100644 index cc88037..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00005.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00005.png deleted file mode 100644 index 66c411c..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00006.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00006.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_accepted/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00000.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00000.png deleted file mode 100644 index 620e851..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00001.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00001.png deleted file mode 100644 index e9f62b3..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00002.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00002.png deleted file mode 100644 index 4a8aecb..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00003.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00003.png deleted file mode 100644 index 6dccfd7..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00004.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00004.png deleted file mode 100644 index cc88037..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00005.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00005.png deleted file mode 100644 index 66c411c..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00006.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00006.png deleted file mode 100644 index 9c7e704..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00007.png b/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00007.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_get_public_key_confirm_refused/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00001.png deleted file mode 100644 index 0414433..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00002.png deleted file mode 100644 index c7f0249..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00003.png deleted file mode 100644 index 6e5ab31..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00004.png deleted file mode 100644 index 0d29f0d..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00005.png deleted file mode 100644 index 6848041..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00006.png deleted file mode 100644 index 27387f9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00007.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00008.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00008.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00002.png deleted file mode 100644 index 847fbd6..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00003.png deleted file mode 100644 index 1f692fc..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00004.png deleted file mode 100644 index f47b3a1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00005.png deleted file mode 100644 index 21a1cce..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00006.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00007.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyram/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00002.png deleted file mode 100644 index f3520d2..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00003.png deleted file mode 100644 index 1f692fc..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00004.png deleted file mode 100644 index f47b3a1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00005.png deleted file mode 100644 index acf9201..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00006.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00007.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_buyrambytes/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00002.png deleted file mode 100644 index 8cef33e..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00003.png deleted file mode 100644 index d2ec747..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00004.png deleted file mode 100644 index 194ce19..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00005.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00006.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_deleteauth/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00002.png deleted file mode 100644 index f46bf86..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00003.png deleted file mode 100644 index d2ec747..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00004.png deleted file mode 100644 index 4c8bdef..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00005.png deleted file mode 100644 index dcda37a..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00006.png deleted file mode 100644 index 194ce19..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00007.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00008.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00008.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_linkauth/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00002.png deleted file mode 100644 index 95baddf..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00003.png deleted file mode 100644 index d2ec747..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00004.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00005.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_refund/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00002.png deleted file mode 100644 index 53bb5a5..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00003.png deleted file mode 100644 index f47b3a1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00004.png deleted file mode 100644 index 4139447..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00005.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00006.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_sellram/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00002.png deleted file mode 100644 index 4f23091..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00003.png deleted file mode 100644 index d2ec747..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00004.png deleted file mode 100644 index 4c8bdef..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00005.png deleted file mode 100644 index dcda37a..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00006.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00007.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_unlinkauth/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00002.png deleted file mode 100644 index 2829360..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00003.png deleted file mode 100644 index d2ec747..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00004.png deleted file mode 100644 index 194ce19..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00005.png deleted file mode 100644 index fcd703c..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00006.png deleted file mode 100644 index cc68ce5..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00007.png deleted file mode 100644 index 68981c3..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00008.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00008.png deleted file mode 100644 index f603bbc..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00009.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00009.png deleted file mode 100644 index 7811c84..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00009.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00010.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00010.png deleted file mode 100644 index 284ddc9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00010.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00011.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00011.png deleted file mode 100644 index d06c63a..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00011.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00012.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00012.png deleted file mode 100644 index 78c4aa5..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00012.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00013.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00013.png deleted file mode 100644 index 50bb721..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00013.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00014.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00014.png deleted file mode 100644 index 41070e0..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00014.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00015.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00015.png deleted file mode 100644 index f659261..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00015.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00016.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00016.png deleted file mode 100644 index 00b1b06..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00016.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00017.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00017.png deleted file mode 100644 index 01ea4aa..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00017.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00018.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00018.png deleted file mode 100644 index 5fd6871..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00018.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00019.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00019.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00019.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00020.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00020.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_updateauth/00020.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00002.png deleted file mode 100644 index 01f785b..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00003.png deleted file mode 100644 index d2ec747..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00004.png deleted file mode 100644 index 0c0ff97..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00005.png deleted file mode 100644 index 139cb72..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00006.png deleted file mode 100644 index b2a393a..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00007.png deleted file mode 100644 index e7e9b4e..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00008.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00008.png deleted file mode 100644 index 09cfdd4..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00009.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00009.png deleted file mode 100644 index 961a673..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00009.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00010.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00010.png deleted file mode 100644 index e159ead..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00010.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00011.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00011.png deleted file mode 100644 index ee5f31f..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00011.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00012.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00012.png deleted file mode 100644 index fd002d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00012.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00013.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00013.png deleted file mode 100644 index 412454e..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00013.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00014.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00014.png deleted file mode 100644 index f37ca4a..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00014.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00015.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00015.png deleted file mode 100644 index b24c020..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00015.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00016.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00016.png deleted file mode 100644 index 045bd26..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00016.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00017.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00017.png deleted file mode 100644 index b7cb960..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00017.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00018.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00018.png deleted file mode 100644 index fff98f9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00018.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00019.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00019.png deleted file mode 100644 index 51ef1b6..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00019.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00020.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00020.png deleted file mode 100644 index 13185af..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00020.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00021.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00021.png deleted file mode 100644 index 87585fb..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00021.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00022.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00022.png deleted file mode 100644 index b37964b..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00022.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00023.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00023.png deleted file mode 100644 index e6e5cb0..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00023.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00024.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00024.png deleted file mode 100644 index 6eab3c9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00024.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00025.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00025.png deleted file mode 100644 index 6cca1cc..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00025.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00026.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00026.png deleted file mode 100644 index 9e160fe..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00026.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00027.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00027.png deleted file mode 100644 index 1a9318e..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00027.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00028.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00028.png deleted file mode 100644 index b067d9b..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00028.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00029.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00029.png deleted file mode 100644 index c2dbc1a..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00029.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00030.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00030.png deleted file mode 100644 index a10a302..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00030.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00031.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00031.png deleted file mode 100644 index 46caddf..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00031.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00032.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00032.png deleted file mode 100644 index f9e2664..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00032.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00033.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00033.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00033.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00034.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00034.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote/00034.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00002.png deleted file mode 100644 index 01f785b..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00003.png deleted file mode 100644 index d2ec747..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00004.png deleted file mode 100644 index aa36e03..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00005.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00006.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_accepted/transaction_vote_proxy/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00001.png deleted file mode 100644 index 3ba34c5..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00002.png deleted file mode 100644 index 10af689..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00003.png deleted file mode 100644 index 30e74ad..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00004.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00005.png deleted file mode 100644 index df48ff4..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00006.png deleted file mode 100644 index 4970506..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00007.png deleted file mode 100644 index 8e4a8cb..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00008.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00008.png deleted file mode 100644 index e686919..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00009.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00009.png deleted file mode 100644 index f9cf739..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00009.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00010.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00010.png deleted file mode 100644 index f687961..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00010.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00011.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00011.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part1/00011.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00000.png deleted file mode 100644 index fdda2ef..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00001.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00002.png deleted file mode 100644 index f3520d2..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00003.png deleted file mode 100644 index 1f692fc..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00004.png deleted file mode 100644 index 2d779fb..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00005.png deleted file mode 100644 index 1ccddb7..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00006.png deleted file mode 100644 index f687961..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00007.png deleted file mode 100644 index eb0d386..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00008.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00008.png deleted file mode 100644 index 4353e56..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00009.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00009.png deleted file mode 100644 index e0cfc41..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00009.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00010.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00010.png deleted file mode 100644 index 6e5ab31..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00010.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00011.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00011.png deleted file mode 100644 index 2d779fb..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00011.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00012.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00012.png deleted file mode 100644 index 1ef0630..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00012.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00013.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00013.png deleted file mode 100644 index 7b7e7a7..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00013.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00014.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00014.png deleted file mode 100644 index ec14691..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00014.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00015.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00015.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00015.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00016.png b/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00016.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_newaccount_accepted/part2/00016.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00001.png deleted file mode 100644 index 0414433..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00002.png deleted file mode 100644 index c7f0249..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00003.png deleted file mode 100644 index 6e5ab31..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00004.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00004.png deleted file mode 100644 index 0d29f0d..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00005.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00005.png deleted file mode 100644 index 6848041..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00006.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00006.png deleted file mode 100644 index 27387f9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00007.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00007.png deleted file mode 100644 index 9ccdcd1..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00007.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00008.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00008.png deleted file mode 100644 index d55782f..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00009.png b/tests/functional/snapshots/nanos/test_sign_transaction_refused/00009.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_refused/00009.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00000.png b/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00000.png deleted file mode 100644 index 5f7f7d9..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00000.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00001.png b/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00001.png deleted file mode 100644 index 8db7ffc..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00001.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00002.png b/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00002.png deleted file mode 100644 index 10af689..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00002.png and /dev/null differ diff --git a/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00003.png b/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00003.png deleted file mode 100644 index 4d13f81..0000000 Binary files a/tests/functional/snapshots/nanos/test_sign_transaction_unknown_fail/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00000.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00000.png index 2fda19b..93341ad 100644 Binary files a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00000.png and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00001.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00001.png index 8f21a1a..bdbc0ff 100644 Binary files a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00001.png and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00002.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00002.png index d885fe6..77bcafd 100644 Binary files a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00002.png and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00003.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00003.png index 3922fb6..f265d69 100644 Binary files a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00003.png and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00004.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00004.png index d885fe6..77bcafd 100644 Binary files a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00004.png and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00005.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00005.png index a03b54e..3927e05 100644 Binary files a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00005.png and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00006.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00006.png index 5612988..7528a4b 100644 Binary files a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00006.png and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00007.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00007.png index 61861f2..77bcafd 100644 Binary files a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00007.png and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00008.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00008.png index 2fda19b..bdbc0ff 100644 Binary files a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00008.png and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00008.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00009.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00009.png new file mode 100644 index 0000000..166a616 Binary files /dev/null and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00009.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00010.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00010.png new file mode 100644 index 0000000..94abd9e Binary files /dev/null and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00010.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00011.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00011.png new file mode 100644 index 0000000..7528a4b Binary files /dev/null and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00011.png differ diff --git a/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00012.png b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00012.png new file mode 100644 index 0000000..bdbc0ff Binary files /dev/null and b/tests/functional/snapshots/nanosp/test_app_mainmenu_settings_cfg/00012.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00000.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00000.png index d838a03..2e52246 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00000.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png index 143f1de..6a2f6c9 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png index 7d85e3b..0ff507e 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png index 53ae651..7dfa0c5 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00004.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00004.png index 2fda19b..84caa59 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00004.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_accepted/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00000.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00000.png index d838a03..2e52246 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00000.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png index 143f1de..6a2f6c9 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png index 7d85e3b..0ff507e 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png index 53ae651..7dfa0c5 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png index e90cd9d..7b38f99 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00005.png b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00005.png index 2fda19b..03e5ee2 100644 Binary files a/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00005.png and b/tests/functional/snapshots/nanosp/test_get_public_key_confirm_refused/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00001.png index f84304a..058bf61 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00002.png index 5dfe950..5662b50 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00003.png index 091daeb..7402d1b 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00004.png index 5a69a47..883c02a 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00005.png index 16359b2..beb6099 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00006.png index 27fb3f4..eb37337 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00007.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00008.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00008.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00008.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction/00008.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00002.png index 4db19df..a7c828f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00003.png index 677778e..fbdd8db 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00004.png index 1c21e39..7f07daf 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00005.png index afdbcbc..bafe0c3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00006.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00007.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyram/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00002.png index b959e18..970d164 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00003.png index 677778e..fbdd8db 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00004.png index 1c21e39..7f07daf 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00005.png index 05fb07c..589e447 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00006.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00007.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_buyrambytes/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00002.png index 51bd17c..c803dff 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00004.png index 7320ef1..06412ac 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00005.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00006.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_deleteauth/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00002.png index dfbf12a..486b674 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00004.png index 801c023..1c8ede1 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00005.png index a09ada9..735d0bb 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00006.png index 7320ef1..06412ac 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00007.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00008.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00008.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00008.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_linkauth/00008.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00002.png index 4a94240..d082a81 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00004.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00005.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_refund/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00002.png index b97911a..1cce2c2 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00003.png index 1c21e39..7f07daf 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00004.png index e7e198f..4ee684f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00005.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00006.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_sellram/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00002.png index 17e325e..250f483 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00004.png index 801c023..1c8ede1 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00005.png index a09ada9..735d0bb 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00006.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00007.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_unlinkauth/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00002.png index 0a9c4e6..265bb6f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00004.png index 7320ef1..06412ac 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00005.png index 5b87a1e..cccc817 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00006.png index 791bb36..5efb0fd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00007.png index cb66136..e7700d8 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00008.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00008.png index 693d841..c288a41 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00008.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00008.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00009.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00009.png index 95e7a45..6c6520e 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00009.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00009.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00010.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00010.png index a55b967..72e5f75 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00010.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00010.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00011.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00011.png index f616a23..41c05fc 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00011.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00011.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00012.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00012.png index 50e7903..33f3744 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00012.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00012.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00013.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00013.png index 6821fee..6b70463 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00013.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00013.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00014.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00014.png index 049f439..6289ff7 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00014.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00014.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00015.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00015.png index 0065277..9ef3426 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00015.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00015.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00016.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00016.png index 8586b9f..8de68ab 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00016.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00016.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00017.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00017.png index a1b8d38..f09b2ed 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00017.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00017.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00018.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00018.png index 4283e2a..fa5fe80 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00018.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00018.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00019.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00019.png index 1366e8d..856943f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00019.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00019.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00020.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00020.png index 2fda19b..4f157ff 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00020.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00020.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00021.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00021.png new file mode 100644 index 0000000..c1d53a3 Binary files /dev/null and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00021.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00022.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00022.png new file mode 100644 index 0000000..3a16119 Binary files /dev/null and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_updateauth/00022.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00002.png index 9c0d70b..c32e08b 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00004.png index f005fc5..4c18a99 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00005.png index 802f1d9..d7a22c6 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00006.png index 559ce41..6a2e50b 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00007.png index ca232db..ff9cda2 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00008.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00008.png index 34c4674..367f293 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00008.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00008.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00009.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00009.png index b848582..2442470 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00009.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00009.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00010.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00010.png index 652a35d..81a099c 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00010.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00010.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00011.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00011.png index ca3405a..fc4fc6a 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00011.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00011.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00012.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00012.png index a596285..ee56fc2 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00012.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00012.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00013.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00013.png index c387fa9..b206b63 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00013.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00013.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00014.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00014.png index 5f20e6c..c867f83 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00014.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00014.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00015.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00015.png index 9f3a2d9..0fac673 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00015.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00015.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00016.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00016.png index 58a877c..777bc27 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00016.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00016.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00017.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00017.png index 4a51997..f26cb6d 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00017.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00017.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00018.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00018.png index 0f17d3d..f45e647 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00018.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00018.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00019.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00019.png index 698d8fe..df87766 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00019.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00019.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00020.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00020.png index f1aac35..d20927f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00020.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00020.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00021.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00021.png index 1eeff87..9adf6fa 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00021.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00021.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00022.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00022.png index 17b619e..5d13943 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00022.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00022.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00023.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00023.png index 42bb079..9ad1fef 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00023.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00023.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00024.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00024.png index 532590a..aca74d6 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00024.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00024.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00025.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00025.png index d6c7e24..c19f234 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00025.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00025.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00026.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00026.png index f902cfd..9803751 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00026.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00026.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00027.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00027.png index 393592c..84b45ff 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00027.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00027.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00028.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00028.png index e6490a7..a826fdd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00028.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00028.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00029.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00029.png index 494ebc1..860917f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00029.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00029.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00030.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00030.png index f32013e..33dd0e8 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00030.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00030.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00031.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00031.png index 5a6c628..68afc20 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00031.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00031.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00032.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00032.png index a46fed5..ac5ad33 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00032.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00032.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00033.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00033.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00033.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00033.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00034.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00034.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00034.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote/00034.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00002.png index 9c0d70b..c32e08b 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00004.png index 3a62382..96b7cb8 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00005.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00006.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_accepted/transaction_vote_proxy/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00001.png index 9b9c5eb..27ce320 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00002.png index 006345f..4233ed4 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00003.png index a353e5e..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00004.png index 8dea3de..85026b6 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00005.png index add9892..4b72fbd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00006.png index 0f01942..32e1830 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00007.png index 2494c5f..4285a20 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00008.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00008.png index 6d9ef8a..f2129d0 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00008.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00008.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00009.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00009.png index 17959ba..e1c71b0 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00009.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00009.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00010.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00010.png index b6a74e3..37b12ae 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00010.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00010.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00011.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00011.png deleted file mode 100644 index 2fda19b..0000000 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part1/00011.png and /dev/null differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00000.png index 1bb680e..c3bebed 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00002.png index b959e18..970d164 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00003.png index 677778e..fbdd8db 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00004.png index 6e1a67f..1df3d10 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00005.png index d87476a..76fbd19 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00006.png index b6a74e3..aa36c0b 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00007.png index ad40992..c1484bd 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00008.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00008.png index 8dea3de..34004aa 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00008.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00008.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00009.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00009.png index ac34ecd..7402d1b 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00009.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00009.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00010.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00010.png index 091daeb..1df3d10 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00010.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00010.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00011.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00011.png index 6e1a67f..64069c1 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00011.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00011.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00012.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00012.png index 4f18b14..5486f09 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00012.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00012.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00013.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00013.png index 838ddf5..4e99a17 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00013.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00013.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00014.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00014.png index 622c0f3..0d65311 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00014.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00014.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00015.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00015.png index 1366e8d..3a16119 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00015.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00015.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00016.png b/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00016.png deleted file mode 100644 index 2fda19b..0000000 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_newaccount_accepted/part2/00016.png and /dev/null differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00001.png index f84304a..058bf61 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00002.png index 5dfe950..5662b50 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00003.png index 091daeb..7402d1b 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00003.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00003.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00004.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00004.png index 5a69a47..883c02a 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00004.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00004.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00005.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00005.png index 16359b2..beb6099 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00005.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00005.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00006.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00006.png index 27fb3f4..eb37337 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00006.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00006.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00007.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00007.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00007.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00007.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00008.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00008.png index 121cfd5..09a1af1 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00008.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00008.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00009.png b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00009.png index 2fda19b..26c6197 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00009.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_refused/00009.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00000.png b/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00000.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00000.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00001.png b/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00001.png index 57b322b..e3226d7 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00001.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00001.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00002.png b/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00002.png index 006345f..93341ad 100644 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00002.png and b/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00002.png differ diff --git a/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00003.png b/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00003.png deleted file mode 100644 index 2fda19b..0000000 Binary files a/tests/functional/snapshots/nanosp/test_sign_transaction_unknown_fail/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00000.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00000.png index 2fda19b..93341ad 100644 Binary files a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00000.png and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00001.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00001.png index 8f21a1a..bdbc0ff 100644 Binary files a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00001.png and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00002.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00002.png index d885fe6..77bcafd 100644 Binary files a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00002.png and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00003.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00003.png index 3922fb6..f265d69 100644 Binary files a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00003.png and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00004.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00004.png index d885fe6..77bcafd 100644 Binary files a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00004.png and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00005.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00005.png index a03b54e..3927e05 100644 Binary files a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00005.png and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00006.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00006.png index 5612988..7528a4b 100644 Binary files a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00006.png and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00007.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00007.png index 61861f2..77bcafd 100644 Binary files a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00007.png and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00008.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00008.png index 2fda19b..bdbc0ff 100644 Binary files a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00008.png and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00008.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00009.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00009.png new file mode 100644 index 0000000..166a616 Binary files /dev/null and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00009.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00010.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00010.png new file mode 100644 index 0000000..94abd9e Binary files /dev/null and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00010.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00011.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00011.png new file mode 100644 index 0000000..7528a4b Binary files /dev/null and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00011.png differ diff --git a/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00012.png b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00012.png new file mode 100644 index 0000000..bdbc0ff Binary files /dev/null and b/tests/functional/snapshots/nanox/test_app_mainmenu_settings_cfg/00012.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00000.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00000.png index d838a03..2e52246 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00000.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00001.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00001.png index 143f1de..6a2f6c9 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00001.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00002.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00002.png index 7d85e3b..0ff507e 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00002.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00003.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00003.png index 53ae651..7dfa0c5 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00003.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00004.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00004.png index 2fda19b..84caa59 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00004.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_accepted/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00000.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00000.png index d838a03..2e52246 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00000.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00001.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00001.png index 143f1de..6a2f6c9 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00001.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00002.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00002.png index 7d85e3b..0ff507e 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00002.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00003.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00003.png index 53ae651..7dfa0c5 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00003.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00004.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00004.png index e90cd9d..7b38f99 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00004.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00005.png b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00005.png index 2fda19b..03e5ee2 100644 Binary files a/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00005.png and b/tests/functional/snapshots/nanox/test_get_public_key_confirm_refused/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00001.png index f84304a..058bf61 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00002.png index 5dfe950..5662b50 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00003.png index 091daeb..7402d1b 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00004.png index 5a69a47..883c02a 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00005.png index 16359b2..beb6099 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00006.png index 27fb3f4..eb37337 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00007.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00008.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00008.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00008.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction/00008.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00002.png index 4db19df..a7c828f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00003.png index 677778e..fbdd8db 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00004.png index 1c21e39..7f07daf 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00005.png index afdbcbc..bafe0c3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00006.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00007.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyram/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00002.png index b959e18..970d164 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00003.png index 677778e..fbdd8db 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00004.png index 1c21e39..7f07daf 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00005.png index 05fb07c..589e447 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00006.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00007.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_buyrambytes/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00002.png index 51bd17c..c803dff 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00004.png index 7320ef1..06412ac 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00005.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00006.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_deleteauth/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00002.png index dfbf12a..486b674 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00004.png index 801c023..1c8ede1 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00005.png index a09ada9..735d0bb 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00006.png index 7320ef1..06412ac 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00007.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00008.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00008.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00008.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_linkauth/00008.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00002.png index 4a94240..d082a81 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00004.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00005.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_refund/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00002.png index b97911a..1cce2c2 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00003.png index 1c21e39..7f07daf 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00004.png index e7e198f..4ee684f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00005.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00006.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_sellram/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00002.png index 17e325e..250f483 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00004.png index 801c023..1c8ede1 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00005.png index a09ada9..735d0bb 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00006.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00007.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_unlinkauth/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00002.png index 0a9c4e6..265bb6f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00004.png index 7320ef1..06412ac 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00005.png index 5b87a1e..cccc817 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00006.png index 791bb36..5efb0fd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00007.png index cb66136..e7700d8 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00008.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00008.png index 693d841..c288a41 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00008.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00008.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00009.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00009.png index 95e7a45..6c6520e 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00009.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00009.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00010.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00010.png index a55b967..72e5f75 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00010.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00010.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00011.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00011.png index f616a23..41c05fc 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00011.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00011.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00012.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00012.png index 50e7903..33f3744 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00012.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00012.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00013.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00013.png index 6821fee..6b70463 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00013.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00013.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00014.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00014.png index 049f439..6289ff7 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00014.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00014.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00015.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00015.png index 0065277..9ef3426 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00015.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00015.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00016.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00016.png index 8586b9f..8de68ab 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00016.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00016.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00017.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00017.png index a1b8d38..f09b2ed 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00017.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00017.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00018.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00018.png index 4283e2a..fa5fe80 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00018.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00018.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00019.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00019.png index 1366e8d..856943f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00019.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00019.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00020.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00020.png index 2fda19b..4f157ff 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00020.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00020.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00021.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00021.png new file mode 100644 index 0000000..c1d53a3 Binary files /dev/null and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00021.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00022.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00022.png new file mode 100644 index 0000000..3a16119 Binary files /dev/null and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_updateauth/00022.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00002.png index 9c0d70b..c32e08b 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00004.png index f005fc5..4c18a99 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00005.png index 802f1d9..d7a22c6 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00006.png index 559ce41..6a2e50b 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00007.png index ca232db..ff9cda2 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00008.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00008.png index 34c4674..367f293 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00008.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00008.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00009.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00009.png index b848582..2442470 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00009.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00009.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00010.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00010.png index 652a35d..81a099c 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00010.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00010.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00011.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00011.png index ca3405a..fc4fc6a 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00011.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00011.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00012.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00012.png index a596285..ee56fc2 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00012.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00012.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00013.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00013.png index c387fa9..b206b63 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00013.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00013.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00014.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00014.png index 5f20e6c..c867f83 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00014.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00014.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00015.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00015.png index 9f3a2d9..0fac673 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00015.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00015.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00016.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00016.png index 58a877c..777bc27 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00016.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00016.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00017.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00017.png index 4a51997..f26cb6d 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00017.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00017.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00018.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00018.png index 0f17d3d..f45e647 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00018.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00018.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00019.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00019.png index 698d8fe..df87766 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00019.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00019.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00020.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00020.png index f1aac35..d20927f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00020.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00020.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00021.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00021.png index 1eeff87..9adf6fa 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00021.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00021.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00022.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00022.png index 17b619e..5d13943 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00022.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00022.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00023.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00023.png index 42bb079..9ad1fef 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00023.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00023.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00024.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00024.png index 532590a..aca74d6 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00024.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00024.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00025.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00025.png index d6c7e24..c19f234 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00025.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00025.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00026.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00026.png index f902cfd..9803751 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00026.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00026.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00027.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00027.png index 393592c..84b45ff 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00027.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00027.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00028.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00028.png index e6490a7..a826fdd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00028.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00028.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00029.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00029.png index 494ebc1..860917f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00029.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00029.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00030.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00030.png index f32013e..33dd0e8 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00030.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00030.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00031.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00031.png index 5a6c628..68afc20 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00031.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00031.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00032.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00032.png index a46fed5..ac5ad33 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00032.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00032.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00033.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00033.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00033.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00033.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00034.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00034.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00034.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote/00034.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00002.png index 9c0d70b..c32e08b 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00003.png index f1bd244..4e3fe95 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00004.png index 3a62382..96b7cb8 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00005.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00006.png index 2fda19b..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_accepted/transaction_vote_proxy/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00001.png index 9b9c5eb..27ce320 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00002.png index 006345f..4233ed4 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00003.png index a353e5e..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00004.png index 8dea3de..85026b6 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00005.png index add9892..4b72fbd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00006.png index 0f01942..32e1830 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00007.png index 2494c5f..4285a20 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00008.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00008.png index 6d9ef8a..f2129d0 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00008.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00008.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00009.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00009.png index 17959ba..e1c71b0 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00009.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00009.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00010.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00010.png index b6a74e3..37b12ae 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00010.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00010.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00011.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00011.png deleted file mode 100644 index 2fda19b..0000000 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part1/00011.png and /dev/null differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00000.png index 1bb680e..c3bebed 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00001.png index 8dea3de..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00002.png index b959e18..970d164 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00003.png index 677778e..fbdd8db 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00004.png index 6e1a67f..1df3d10 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00005.png index d87476a..76fbd19 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00006.png index b6a74e3..aa36c0b 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00007.png index ad40992..c1484bd 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00008.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00008.png index 8dea3de..34004aa 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00008.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00008.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00009.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00009.png index ac34ecd..7402d1b 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00009.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00009.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00010.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00010.png index 091daeb..1df3d10 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00010.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00010.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00011.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00011.png index 6e1a67f..64069c1 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00011.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00011.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00012.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00012.png index 4f18b14..5486f09 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00012.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00012.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00013.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00013.png index 838ddf5..4e99a17 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00013.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00013.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00014.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00014.png index 622c0f3..0d65311 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00014.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00014.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00015.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00015.png index 1366e8d..3a16119 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00015.png and b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00015.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00016.png b/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00016.png deleted file mode 100644 index 2fda19b..0000000 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_newaccount_accepted/part2/00016.png and /dev/null differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00001.png index f84304a..058bf61 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00002.png index 5dfe950..5662b50 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00003.png index 091daeb..7402d1b 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00003.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00003.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00004.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00004.png index 5a69a47..883c02a 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00004.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00004.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00005.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00005.png index 16359b2..beb6099 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00005.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00005.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00006.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00006.png index 27fb3f4..eb37337 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00006.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00006.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00007.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00007.png index 1366e8d..c1d53a3 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00007.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00007.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00008.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00008.png index 121cfd5..09a1af1 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00008.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00008.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00009.png b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00009.png index 2fda19b..26c6197 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_refused/00009.png and b/tests/functional/snapshots/nanox/test_sign_transaction_refused/00009.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00000.png b/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00000.png index 1776f45..970866f 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00000.png and b/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00000.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00001.png b/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00001.png index 57b322b..e3226d7 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00001.png and b/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00001.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00002.png b/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00002.png index 006345f..93341ad 100644 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00002.png and b/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00002.png differ diff --git a/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00003.png b/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00003.png deleted file mode 100644 index 2fda19b..0000000 Binary files a/tests/functional/snapshots/nanox/test_sign_transaction_unknown_fail/00003.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_app_mainmenu_settings_cfg/00003.png b/tests/functional/snapshots/stax/test_app_mainmenu_settings_cfg/00003.png index 29a5445..f24b4c8 100644 Binary files a/tests/functional/snapshots/stax/test_app_mainmenu_settings_cfg/00003.png and b/tests/functional/snapshots/stax/test_app_mainmenu_settings_cfg/00003.png differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction/00005.png b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction/00005.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_buyram/00005.png b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_buyram/00005.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_buyram/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_buyrambytes/00005.png b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_buyrambytes/00005.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_buyrambytes/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_linkauth/00005.png b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_linkauth/00005.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_linkauth/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_unlinkauth/00005.png b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_unlinkauth/00005.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_unlinkauth/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_updateauth/00008.png b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_updateauth/00008.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_updateauth/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00006.png b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00006.png index 775a687..b746370 100644 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00006.png and b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00006.png differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00010.png b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00010.png deleted file mode 100644 index 2ba6d27..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00010.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00011.png b/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00011.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_accepted/transaction_vote/00011.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part1/00004.png b/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part1/00004.png deleted file mode 100644 index 1b7c742..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part1/00004.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part1/00005.png b/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part1/00005.png deleted file mode 100644 index fd9a2c9..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part1/00005.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part2/00008.png b/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part2/00008.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part2/00008.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part2/00009.png b/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part2/00009.png deleted file mode 100644 index 19e4ef3..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_newaccount_accepted/part2/00009.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_refused/part0/00006.png b/tests/functional/snapshots/stax/test_sign_transaction_refused/part0/00006.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_refused/part0/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_refused/part1/00006.png b/tests/functional/snapshots/stax/test_sign_transaction_refused/part1/00006.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_refused/part1/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_refused/part2/00006.png b/tests/functional/snapshots/stax/test_sign_transaction_refused/part2/00006.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_refused/part2/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_refused/part3/00006.png b/tests/functional/snapshots/stax/test_sign_transaction_refused/part3/00006.png deleted file mode 100644 index 01f756b..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_refused/part3/00006.png and /dev/null differ diff --git a/tests/functional/snapshots/stax/test_sign_transaction_unknown_fail/00001.png b/tests/functional/snapshots/stax/test_sign_transaction_unknown_fail/00001.png deleted file mode 100644 index 4ebd8bd..0000000 Binary files a/tests/functional/snapshots/stax/test_sign_transaction_unknown_fail/00001.png and /dev/null differ diff --git a/tests/functional/test_app_mainmenu_settings_cfg.py b/tests/functional/test_app_mainmenu_settings_cfg.py index 45f0b51..95bfabf 100644 --- a/tests/functional/test_app_mainmenu_settings_cfg.py +++ b/tests/functional/test_app_mainmenu_settings_cfg.py @@ -1,8 +1,9 @@ -from typing import List +from typing import List, Tuple from pathlib import Path import re from ragger.backend import SpeculosBackend from ragger.navigator import NavInsID, NavIns +from ledgered.devices import Device, DeviceType # type: ignore[import] from apps.eos import EosClient from utils import ROOT_SCREENSHOT_PATH @@ -17,7 +18,7 @@ def _read_makefile() -> List[str]: lines = f_p.readlines() return lines -def _verify_version(version: str) -> None: +def _verify_version(version: Tuple[int, int, int]) -> None: """Verify the app version, based on defines in Makefile Args: @@ -40,7 +41,7 @@ def _verify_version(version: str) -> None: assert version == vers_str -def test_app_mainmenu_settings_cfg(firmware, backend, navigator, test_name): +def test_app_mainmenu_settings_cfg(device: Device, backend, navigator, test_name): client = EosClient(backend) # Get appversion and "data_allowed parameter" @@ -56,25 +57,39 @@ def test_app_mainmenu_settings_cfg(firmware, backend, navigator, test_name): if isinstance(backend, SpeculosBackend): # Navigate in the main menu and the setting menu # Change the "data_allowed parameter" value - if firmware.device.startswith("nano"): + instructions: List[NavInsID | NavIns] + if device.is_nano: instructions = [ NavInsID.RIGHT_CLICK, NavInsID.RIGHT_CLICK, NavInsID.RIGHT_CLICK, NavInsID.LEFT_CLICK, NavInsID.BOTH_CLICK, + NavInsID.RIGHT_CLICK, + NavInsID.BOTH_CLICK, + NavInsID.LEFT_CLICK, + NavInsID.BOTH_CLICK, NavInsID.BOTH_CLICK, NavInsID.RIGHT_CLICK, - NavInsID.BOTH_CLICK + NavInsID.BOTH_CLICK, ] else: - instructions = [ - NavInsID.USE_CASE_HOME_INFO, - NavIns(NavInsID.TOUCH, (200, 190)), # Change setting value - NavInsID.USE_CASE_SETTINGS_NEXT, - NavInsID.USE_CASE_SETTINGS_PREVIOUS, - NavInsID.USE_CASE_SETTINGS_MULTI_PAGE_EXIT - ] + if device.type == DeviceType.APEX_P: + instructions = [ + NavInsID.USE_CASE_HOME_INFO, + NavIns(NavInsID.TOUCH, (270, 100)), # Change setting value + NavInsID.USE_CASE_SETTINGS_NEXT, + NavInsID.USE_CASE_SETTINGS_PREVIOUS, + NavInsID.USE_CASE_SETTINGS_MULTI_PAGE_EXIT + ] + else: + instructions = [ + NavInsID.USE_CASE_HOME_INFO, + NavIns(NavInsID.TOUCH, (200, 190)), # Change setting value + NavInsID.USE_CASE_SETTINGS_NEXT, + NavInsID.USE_CASE_SETTINGS_PREVIOUS, + NavInsID.USE_CASE_SETTINGS_MULTI_PAGE_EXIT + ] navigator.navigate_and_compare(ROOT_SCREENSHOT_PATH, test_name, instructions, screen_change_before_first_instruction=False) diff --git a/tests/functional/test_sign_cmd.py b/tests/functional/test_sign_cmd.py index 431b761..b8afb9a 100644 --- a/tests/functional/test_sign_cmd.py +++ b/tests/functional/test_sign_cmd.py @@ -6,8 +6,8 @@ from ragger.navigator import NavInsID from ragger.utils import split_message from ragger.backend import BackendInterface -from ragger.firmware import Firmware from ragger.navigator.navigation_scenario import NavigateWithScenario +from ledgered.devices import Device, DeviceType # type: ignore[import] from apps.eos import EosClient, ErrorType, MAX_CHUNK_SIZE from apps.eos_transaction_builder import Transaction @@ -31,7 +31,6 @@ def load_transaction_from_file(transaction_filename): @pytest.mark.parametrize("transaction_filename", transactions) def test_sign_transaction_accepted(test_name: str, - firmware: Firmware, backend: BackendInterface, scenario_navigator: NavigateWithScenario, transaction_filename: str): @@ -39,27 +38,22 @@ def test_sign_transaction_accepted(test_name: str, signing_digest, message = load_transaction_from_file(transaction_filename) client = EosClient(backend) - if firmware.is_nano: - end_text = "^Sign$" - else: - end_text = "^Hold to sign$" with client.send_async_sign_message(EOS_PATH, message): - scenario_navigator.review_approve(test_name=folder_name, custom_screen_text=end_text) + scenario_navigator.review_approve(test_name=folder_name) response = client.get_async_response().data client.verify_signature(EOS_PATH, signing_digest, response) def test_sign_transaction_refused(test_name: str, - firmware: Firmware, + device: Device, backend: BackendInterface, scenario_navigator: NavigateWithScenario): _, message = load_transaction_from_file("transaction.json") client = EosClient(backend) backend.raise_policy = RaisePolicy.RAISE_NOTHING - if firmware.is_nano: - end_text = "^Cancel$" + if device.is_nano: with client.send_async_sign_message(EOS_PATH, message): - scenario_navigator.review_reject(test_name=test_name, custom_screen_text=end_text) + scenario_navigator.review_reject(test_name=test_name) rapdu = client.get_async_response() assert rapdu.status == ErrorType.USER_CANCEL assert len(rapdu.data) == 0 @@ -83,26 +77,27 @@ def get_nano_review_instructions(num_screen_skip): # fully contained in the first APDU before answering to it. # Therefore we can't use the simple check_transaction() helper nor the # send_async_sign_message() method and we need to do thing more manually. -def test_sign_transaction_newaccount_accepted(test_name, firmware, backend, navigator): +def test_sign_transaction_newaccount_accepted(test_name, device: Device, backend, navigator): signing_digest, message = load_transaction_from_file("transaction_newaccount.json") client = EosClient(backend) payload = pack_derivation_path(EOS_PATH) + message messages = split_message(payload, MAX_CHUNK_SIZE) assert len(messages) == 2 - if firmware.is_nano: - instructions = get_nano_review_instructions(2) + get_nano_review_instructions(7) + if device.is_nano: + instructions = [NavInsID.RIGHT_CLICK] * 11 else: - instructions = [NavInsID.USE_CASE_REVIEW_TAP] * 5 + instructions = [NavInsID.USE_CASE_REVIEW_TAP] * 4 with client.send_async_sign_message_full(messages[0], True): navigator.navigate_and_compare(ROOT_SCREENSHOT_PATH, test_name + "/part1", - instructions) + instructions, + screen_change_after_last_instruction=False) - if firmware.is_nano: - instructions = get_nano_review_instructions(6) + get_nano_review_instructions(8) + if device.is_nano: + instructions = get_nano_review_instructions(14) else: - if firmware == Firmware.FLEX: + if device.type in (DeviceType.FLEX, DeviceType.APEX_P): instructions = [NavInsID.USE_CASE_REVIEW_TAP] * 6 else: instructions = [NavInsID.USE_CASE_REVIEW_TAP] * 5 @@ -121,13 +116,13 @@ def test_sign_transaction_newaccount_accepted(test_name, firmware, backend, navi # fully contained in the first APDU before answering to it. # Therefore we can't use the simple send_async_sign_message() method and we # need to do thing more manually. -def test_sign_transaction_unknown_fail(test_name, firmware, backend, navigator): +def test_sign_transaction_unknown_fail(test_name, device: Device, backend, navigator): _, message = load_transaction_from_file("transaction_unknown.json") client = EosClient(backend) payload = pack_derivation_path(EOS_PATH) + message messages = split_message(payload, MAX_CHUNK_SIZE) - if firmware.device.startswith("nano"): + if device.is_nano: instructions = get_nano_review_instructions(2) else: instructions = [NavInsID.USE_CASE_REVIEW_TAP] @@ -135,6 +130,7 @@ def test_sign_transaction_unknown_fail(test_name, firmware, backend, navigator): backend.raise_policy = RaisePolicy.RAISE_NOTHING navigator.navigate_and_compare(ROOT_SCREENSHOT_PATH, test_name, - instructions) + instructions, + screen_change_after_last_instruction=False) rapdu = client.get_async_response() assert rapdu.status == 0x6A80 diff --git a/tests/functional/usage.md b/tests/functional/usage.md index 0dcc5ff..274a5ae 100644 --- a/tests/functional/usage.md +++ b/tests/functional/usage.md @@ -20,7 +20,7 @@ You can use for this the container `ghcr.io/ledgerhq/ledger-app-builder/ledger-a docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest cd docker run --user "$(id -u)":"$(id -g)" --rm -ti -v "$(realpath .):/app" --privileged -v "/dev/bus/usb:/dev/bus/usb" ledger-app-builder-lite:latest -make clean && make BOLOS_SDK=$_SDK # replace with one of [NANOS, NANOX, NANOSP, STAX, FLEX] +make clean && make BOLOS_SDK=$_SDK # replace with one of [NANOX, NANOSP, STAX, FLEX, APEX_P] exit ``` @@ -43,7 +43,7 @@ You can use for this the container `ghcr.io/ledgerhq/ledger-app-builder/ledger-a docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest cd app- docker run --user "$(id -u)":"$(id -g)" --rm -ti -v "$(realpath .):/app" --privileged -v "/dev/bus/usb:/dev/bus/usb" ledger-app-builder-lite:latest -make clean && make BOLOS_SDK=$_SDK load # replace with one of [NANOS, NANOX, NANOSP, STAX, FLEX] +make clean && make BOLOS_SDK=$_SDK load # replace with one of [NANOX, NANOSP, STAX, FLEX, APEX_P] exit ``` @@ -70,7 +70,7 @@ Standard useful pytest options Custom pytest options ```shell - --device run the test on the specified device [nanos,nanox,nanosp,stax,flex,all]. This parameter is mandatory + --device run the test on the specified device [nanox,nanosp,stax,flex,apex_p,all]. This parameter is mandatory --backend run the tests against the backend [speculos, ledgercomm, ledgerwallet]. Speculos is the default --display on Speculos, enables the display of the app screen using QT --golden_run on Speculos, screen comparison functions will save the current screen instead of comparing