Skip to content

Commit

Permalink
fix starcoin-decrypt (#4206)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkysg authored Sep 23, 2024
1 parent ec2bf44 commit 6a7558c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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 commons/decrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ hmac = { workspace = true }
pbkdf2 = { workspace = true }
rand = { workspace = true }
rand_core = { default-features = false, workspace = true }
sha2 = { workspace = true }
sha2_0_10_6 = { workspace = true }

[package]
authors = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions commons/decrypt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use aes_gcm::aead::{generic_array::GenericArray, Aead, NewAead};
use anyhow::{bail, format_err, Result};
use byteorder::{ReadBytesExt, WriteBytesExt};
use rand::RngCore;
use sha2_0_10_6 as sha2;
use std::io::{Cursor, Read, Write};

pub const PBKDF2_DEFAULT_ITERATIONS: usize = 1000;
Expand Down
1 change: 1 addition & 0 deletions state/state-tree/src/state_tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,7 @@ impl Iterator for AccountStateSetIterator {
.dump()
.ok()?,
),
DataType::ResourceGroup => todo!(),
}
}
None => None,
Expand Down

0 comments on commit 6a7558c

Please sign in to comment.