Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyasantoss committed Jul 8, 2024
1 parent e431367 commit 8aa6914
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions roles/mining-proxy/src/lib/downstream_mining.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
use core::convert::TryInto;
use std::sync::Arc;

use async_channel::{Receiver, Sender, SendError};
use async_channel::{Receiver, SendError, Sender};
use tokio::{net::TcpListener, sync::oneshot::Receiver as TokioReceiver, task};
use tracing::{error, info};

use codec_sv2::{Frame, StandardEitherFrame, StandardSv2Frame};
use codec_sv2::{StandardEitherFrame, StandardSv2Frame};
use network_helpers_sv2::plain_connection_tokio::PlainConnection;
use roles_logic_sv2::{
common_messages_sv2::{SetupConnection, SetupConnectionSuccess},
Expand All @@ -23,8 +23,8 @@ use roles_logic_sv2::{
utils::Mutex,
};

use super::upstream_mining::{StdFrame as UpstreamFrame, UpstreamMiningNode};
use super::upstream_mining::ProxyRemoteSelector;
use super::upstream_mining::{StdFrame as UpstreamFrame, UpstreamMiningNode};

pub type Message = MiningDeviceMessages<'static>;
pub type StdFrame = StandardSv2Frame<Message>;
Expand Down

0 comments on commit 8aa6914

Please sign in to comment.