Skip to content

Commit

Permalink
Format imports
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyasantoss committed Jul 9, 2024
1 parent a4b4640 commit e985a59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion roles/mining-proxy/src/lib/downstream_mining.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![allow(dead_code)]

use async_channel::{Receiver, Sender, SendError};
use async_channel::{Receiver, SendError, Sender};
use codec_sv2::{StandardEitherFrame, StandardSv2Frame};
use core::convert::TryInto;
use network_helpers_sv2::plain_connection_tokio::PlainConnection;
Expand Down
3 changes: 1 addition & 2 deletions roles/mining-proxy/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
#![allow(special_module_name)]
use std::{net::SocketAddr, sync::Arc};

use tokio::net::TcpListener;
use tokio::sync::oneshot;
use tokio::{net::TcpListener, sync::oneshot};
use tracing::{error, info};

use lib::Config;
Expand Down

0 comments on commit e985a59

Please sign in to comment.