cargo +nightly fmt (again)

This commit is contained in:
Luke Parker 2023-08-01 02:51:58 -04:00
parent 53d86e2a29
commit 044b299cda
No known key found for this signature in database
3 changed files with 2 additions and 3 deletions

View file

@ -1,7 +1,6 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))] #![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![no_std] // Prevents writing new code, in what should be a simple wrapper, which requires std #![no_std] // Prevents writing new code, in what should be a simple wrapper, which requires std
#![doc = include_str!("../README.md")] #![doc = include_str!("../README.md")]
#![allow(clippy::redundant_closure_call)] #![allow(clippy::redundant_closure_call)]
use core::{ use core::{

View file

@ -1,7 +1,6 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))] #![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")] #![doc = include_str!("../README.md")]
#![no_std] #![no_std]
#![allow(clippy::redundant_closure_call)] #![allow(clippy::redundant_closure_call)]
#[macro_use] #[macro_use]

View file

@ -420,7 +420,8 @@ impl Network for Bitcoin {
} }
sleep(Duration::from_secs(60)).await; sleep(Duration::from_secs(60)).await;
} }
}).await; })
.await;
for block_num in (eventualities.block_number + 1) .. this_block_num { for block_num in (eventualities.block_number + 1) .. this_block_num {
let block = { let block = {