Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jakehemmerle committed Dec 15, 2023
1 parent 8f849ca commit 306edf8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions crypto/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ clap ={ version="4.0.29", features=["derive"] }
num ="0.4.0"
async-stream ="0.3.5"
snow ="0.9.2"
sha3 = "0.10.8"
sha3 ="0.10.8"
async-trait ="0.1.73"
hostname ="0.3"
sha1 = "0.10.6"
sha2 = "0.10.8"
sha1 ="0.10.6"
sha2 ="0.10.8"

[dev-dependencies]
testing-utils={ path="../testing-utils" }
Expand Down
4 changes: 2 additions & 2 deletions crypto/server/tests/protocol_wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
mod helpers;
use axum::http::StatusCode;
use entropy_protocol::{KeyParams, ValidatorInfo};
use entropy_shared::{KeyVisibility, OcwMessageDkg, HashingAlgorithm};
use entropy_shared::{HashingAlgorithm, KeyVisibility, OcwMessageDkg};
use futures::future::join_all;
use futures::future::{self};
use kvdb::clean_tests;
Expand Down Expand Up @@ -92,7 +92,7 @@ async fn test_wasm_sign_tx_user_participates() {
auxilary_data: Some(hex::encode(AUXILARY_DATA_SHOULD_SUCCEED)),
validators_info: validators_info.clone(),
timestamp: SystemTime::now(),
hash: HashingAlgorithm::Keccak
hash: HashingAlgorithm::Keccak,
};

let submit_transaction_requests =
Expand Down

0 comments on commit 306edf8

Please sign in to comment.