Skip to content

Commit

Permalink
Update SDK version (NBGL API update)
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Oct 24, 2024
1 parent 5072e00 commit 7f1c34f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions app/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2021"
license = "MIT"

[dependencies]
ledger_device_sdk = "1.17.1"
ledger_secure_sdk_sys = "1.5.0"
ledger_device_sdk = "1.18.0"
ledger_secure_sdk_sys = "1.5.1"
utils= { path = "../utils" }
numtoa = "=0.2.4"
shlex = { version = "1.3.0", default-features = false } # patch for ledger_device_sdk dependency
Expand Down
4 changes: 2 additions & 2 deletions app/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ extern "C" fn sample_main() {
};
if tx_reviewer.display_settings() {
tx_reviewer.reset_display_settings();
home_and_settings = home_and_settings.set_start_page(PageIndex::Settings(0));
home_and_settings.set_start_page(PageIndex::Settings(0));
home_and_settings.show_and_return();
} else if display_home {
home_and_settings = home_and_settings.set_start_page(PageIndex::Home);
home_and_settings.set_start_page(PageIndex::Home);
home_and_settings.show_and_return();
}
}
Expand Down

0 comments on commit 7f1c34f

Please sign in to comment.