We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 296a9cb commit b865721Copy full SHA for b865721
src/tasks/bundler.rs
@@ -5,9 +5,11 @@ use oauth2::TokenResponse;
5
use reqwest::{Client, Url};
6
use serde::{Deserialize, Serialize};
7
use signet_bundle::SignetEthBundle;
8
-use tokio::sync::mpsc::{UnboundedReceiver, UnboundedSender, unbounded_channel};
9
-use tokio::task::JoinHandle;
10
-use tokio::time::{self, Duration};
+use tokio::{
+ sync::mpsc::{UnboundedReceiver, UnboundedSender, unbounded_channel},
+ task::JoinHandle,
11
+ time::{self, Duration},
12
+};
13
14
/// Holds a bundle from the cache with a unique ID and a Zenith bundle.
15
#[derive(Debug, Clone, Serialize, Deserialize)]
0 commit comments