Skip to content

Commit

Permalink
Merge pull request #102 from Zondax/dev
Browse files Browse the repository at this point in the history
New Release
  • Loading branch information
emmanuelm41 authored Dec 3, 2024
2 parents ba27de1 + 52f3317 commit b65d713
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 15 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.1"
APPVERSION = "1.1.2"

[unstable]
build-std = ["core", "alloc"]
Expand Down
13 changes: 0 additions & 13 deletions app/src/ironfish/sapling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,6 @@ pub const SPEND_KEY_SIZE: usize = 32;
/// world, inside the API they map to Edwards points or scalar values
/// on the JubJub curve.
pub struct SaplingKey {
/// The private (secret) key from which all the other key parts are derived.
/// The expanded form of this key is required before a note can be spent.
#[allow(unused)]
spending_key: [u8; SPEND_KEY_SIZE],

/// Part of the expanded form of the spending key, generally referred to as
/// `ask` in the literature. Derived from spending key using a seeded
/// pseudorandom hash function. Used to construct authorizing_key.
#[allow(unused)]
pub(crate) spend_authorizing_key: jubjub::Fr,

/// Part of the expanded form of the spending key, generally referred to as
/// `nsk` in the literature. Derived from spending key using a seeded
/// pseudorandom hash function. Used to construct nullifier_deriving_key
Expand Down Expand Up @@ -93,8 +82,6 @@ impl SaplingKey {
};

Ok(SaplingKey {
spending_key,
spend_authorizing_key,
proof_authorizing_key,
outgoing_viewing_key,
view_key,
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.
2 changes: 1 addition & 1 deletion tests_zemu/tests/basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(1)
expect(resp.patch).toBe(2)
} finally {
await sim.close()
}
Expand Down

0 comments on commit b65d713

Please sign in to comment.