Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
milapsheth committed Jul 11, 2024
1 parent 6c828f7 commit bb800b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[submodule "proto"]
path = proto
url = https://github.com/axelarnetwork/grpc-protobuf.git
fetchRecurseSubmodules = true
2 changes: 1 addition & 1 deletion src/encrypted_sled/kv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ impl EncryptedDb {

#[cfg(test)]
mod tests {
use crate::encrypted_sled::{password::PasswordSalt, Password};
use super::EncryptedDb;
use crate::encrypted_sled::{password::PasswordSalt, Password};

#[test]
fn chacha20poly1305_kdf_known_vector() {
Expand Down
3 changes: 2 additions & 1 deletion src/mnemonic/bip39_bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ pub mod tests {
0x6A, 0x79,
];

let output = hex::encode(bip39_seed(Entropy(entropy), Password("password".to_owned())).unwrap());
let output =
hex::encode(bip39_seed(Entropy(entropy), Password("password".to_owned())).unwrap());

goldie::assert_json!(output);
}
Expand Down

0 comments on commit bb800b2

Please sign in to comment.