Skip to content

Commit

Permalink
Use mutex from tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
perekopskiy committed Mar 31, 2021
1 parent b280f6a commit 91e2e6b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion core/lib/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ parity-crypto = { version = "0.6.2", features = ["publickey"] }
vlog = { path = "../../lib/vlog", version = "1.0" }

async-trait = "0.1"
async-std = "1.9.0"
deadpool = "0.5.2"
sqlx = { version = "0.4.2", default-features = false, features = [
"runtime-tokio-native-tls",
Expand Down
2 changes: 1 addition & 1 deletion core/lib/storage/src/tests/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use zksync_types::prover::{ProverJob, ProverJobType};
use crate::test_data::{gen_sample_block, get_sample_aggregated_proof, get_sample_single_proof};
use crate::tests::db_test;
use crate::{prover::ProverSchema, QueryResult, StorageProcessor};
use async_std::sync::Mutex;
use lazy_static::lazy_static;
use tokio::sync::Mutex;
use zksync_types::BlockNumber;

lazy_static! {
Expand Down

0 comments on commit 91e2e6b

Please sign in to comment.