Skip to content

Commit

Permalink
Merge pull request #103 from Zondax/feat/fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelm41 authored Dec 11, 2024
2 parents b65d713 + c568f94 commit 779b553
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[env]
HEAP_SIZE = "16384"
APPVERSION = "1.1.2"
APPVERSION = "1.1.3"

[unstable]
build-std = ["core", "alloc"]
Expand Down
2 changes: 1 addition & 1 deletion app/Cargo.lock

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

2 changes: 1 addition & 1 deletion app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ironfish-dkg"
version = "0.0.0" # The version is being taken from Makefile.version file
version = "1.1.3" # This version is used by ledger to set the app version on deployment. The version displayed inside the main menu is set on app/.cargo/config.toml
edition = "2021"

[[bin]]
Expand Down
Binary file modified tests_zemu/snapshots/sp-mainmenu/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/sp-mainmenu/00006.png
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_zemu/tests/basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('Basic', function () {
}
})

// TODO fix ST and FL main menu
// TODO fix ST and FL main menu test case
test.each(models.filter(v => v.name === 'nanosp'))('main menu', async function (m) {
const sim = new Zemu(m.path)
try {
Expand All @@ -59,7 +59,7 @@ describe('Basic', function () {
expect(resp.testMode).toBe(false)
expect(resp.major).toBe(1)
expect(resp.minor).toBe(1)
expect(resp.patch).toBe(2)
expect(resp.patch).toBe(3)
} finally {
await sim.close()
}
Expand Down

0 comments on commit 779b553

Please sign in to comment.