mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-22 11:39:35 +00:00
cargo +nightly fmt (again)
This commit is contained in:
parent
53d86e2a29
commit
044b299cda
3 changed files with 2 additions and 3 deletions
|
@ -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::{
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue