Skip to content

Commit

Permalink
PR review.
Browse files Browse the repository at this point in the history
  • Loading branch information
agrojean-ledger committed Jun 10, 2024
1 parent e112044 commit bfc45e4
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ void nv_app_state_init() {
if (N_storage.initialized != 0x01) {
internalStorage_t storage;
storage.settings.allow_blind_sign = BlindSignDisabled;
#if defined(TARGET_NANOX) || defined(TARGET_NANOS2) || defined(TARGET_STAX) || defined(TARGET_FLEX)
#if !defined(TARGET_NANOS)
storage.settings.pubkey_display = PubkeyDisplayLong;
#else
storage.settings.pubkey_display = PubkeyDisplayShort;
Expand Down
4 changes: 2 additions & 2 deletions src/ui/sign_message_nbgl.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void start_sign_tx_ui(size_t num_summary_steps) {
&C_icon_solana_64x64,
"Review transaction",
NULL,
"Sign transaction on\nSolana network?",
"Sign transaction on Solana network?",
review_choice);
}

Expand Down Expand Up @@ -143,7 +143,7 @@ void start_sign_offchain_message_ui(bool is_ascii, size_t num_summary_steps) {
&C_icon_solana_64x64,
"Review off-chain\nmessage",
NULL,
"Sign off-chain\nmessage on Solana\nnetwork?",
"Sign off-chain message on Solana network?",
review_choice);
}
#endif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions tests/python/test_solana.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class TestGetPublicKey:

def test_solana_get_public_key_ok(self, backend, scenario_navigator, navigator, test_name):
def test_solana_get_public_key_ok(self, backend, scenario_navigator):
sol = SolanaClient(backend)
from_public_key = sol.get_public_key(SOL_PACKED_DERIVATION_PATH)

Expand All @@ -19,7 +19,7 @@ def test_solana_get_public_key_ok(self, backend, scenario_navigator, navigator,
assert sol.get_async_response().data == from_public_key


def test_solana_get_public_key_refused(self, backend, scenario_navigator, test_name):
def test_solana_get_public_key_refused(self, backend, scenario_navigator):
sol = SolanaClient(backend)
with sol.send_public_key_with_confirm(SOL_PACKED_DERIVATION_PATH):
backend.raise_policy = RaisePolicy.RAISE_NOTHING
Expand Down

0 comments on commit bfc45e4

Please sign in to comment.