order imports correctly

This commit is contained in:
Boog900 2024-06-13 16:44:07 +01:00
parent efbe18b242
commit 3d995c5af5
No known key found for this signature in database
GPG key ID: 42AB1287CB0041C2

View file

@ -4,7 +4,6 @@
//! and downloads it. //! and downloads it.
//! //!
//! The block downloader is started by [`download_blocks`]. //! The block downloader is started by [`download_blocks`].
use futures::{FutureExt, TryFutureExt};
use std::{ use std::{
cmp::{max, min, Ordering, Reverse}, cmp::{max, min, Ordering, Reverse},
collections::{BTreeMap, BinaryHeap, HashSet}, collections::{BTreeMap, BinaryHeap, HashSet},
@ -13,6 +12,7 @@ use std::{
time::Duration, time::Duration,
}; };
use futures::TryFutureExt;
use monero_serai::{block::Block, transaction::Transaction}; use monero_serai::{block::Block, transaction::Transaction};
use rand::prelude::*; use rand::prelude::*;
use rayon::prelude::*; use rayon::prelude::*;