Skip to content

Commit

Permalink
cargo +nightly fmt (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Aug 1, 2023
1 parent 53d86e2 commit 044b299
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion crypto/dalek-ff-group/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![no_std] // Prevents writing new code, in what should be a simple wrapper, which requires std
#![doc = include_str!("../README.md")]

#![allow(clippy::redundant_closure_call)]

use core::{
Expand Down
1 change: 0 additions & 1 deletion crypto/ed448/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]
#![no_std]

#![allow(clippy::redundant_closure_call)]

#[macro_use]
Expand Down
3 changes: 2 additions & 1 deletion processor/src/networks/bitcoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,8 @@ impl Network for Bitcoin {
}
sleep(Duration::from_secs(60)).await;
}
}).await;
})
.await;

for block_num in (eventualities.block_number + 1) .. this_block_num {
let block = {
Expand Down

0 comments on commit 044b299

Please sign in to comment.