Skip to content

Commit

Permalink
Update nightly
Browse files Browse the repository at this point in the history
Supersedes #387.
  • Loading branch information
kayabaNerve committed Oct 3, 2023
1 parent aa59f53 commit 4ee65ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/nightly-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2023-09-01
nightly-2023-10-01
6 changes: 3 additions & 3 deletions processor/src/tests/scanner.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use core::time::Duration;
use std::sync::{Arc, Mutex};
use std::sync::Arc;

use rand_core::OsRng;

use frost::{Participant, tests::key_gen};

use tokio::time::timeout;
use tokio::{sync::Mutex, time::timeout};

use serai_db::{DbTxn, Db, MemDb};

Expand All @@ -31,7 +31,7 @@ pub async fn test_scanner<N: Network>(network: N) {
let new_scanner = || async {
let mut db = db.clone();
let (mut scanner, current_keys) = Scanner::new(network.clone(), db.clone());
let mut first = first.lock().unwrap();
let mut first = first.lock().await;
if *first {
assert!(current_keys.is_empty());
let mut txn = db.txn();
Expand Down

0 comments on commit 4ee65ed

Please sign in to comment.