Skip to content

Commit

Permalink
Update rust version (#2058)
Browse files Browse the repository at this point in the history
* Update rust version

* Remove unnecessary indirection

---------

Co-authored-by: gix-bot <[email protected]>
Co-authored-by: Nicolas Mattia <[email protected]>
  • Loading branch information
3 people authored Nov 17, 2023
1 parent 7142cda commit 1875a29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.73.0"
channel = "1.74.0"
targets = ["wasm32-unknown-unknown"]
2 changes: 1 addition & 1 deletion src/internet_identity/src/storage/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ fn should_overwrite_persistent_state_with_next_anchor() {
fn should_read_previously_stored_persistent_state() {
const NUM_ANCHORS: u64 = 3;
const EXPECTED_ADDRESS: u64 = RESERVED_HEADER_BYTES + NUM_ANCHORS * 4096;
let persistent_state_bytes = candid::encode_one(&sample_persistent_state()).unwrap();
let persistent_state_bytes = candid::encode_one(sample_persistent_state()).unwrap();
let memory = VectorMemory::default();
// allocate space for the writes
memory.grow(3);
Expand Down

0 comments on commit 1875a29

Please sign in to comment.