Skip to content

Commit 3b62fe0

Browse files
committed
fmt
1 parent 4e49b57 commit 3b62fe0

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub mod utils;
3434
pub mod test_utils;
3535

3636
// Anonymous import suppresses warnings about unused imports.
37-
use openssl as _;
3837
use alloy_transport as _;
3938
use async_trait as _;
39+
use openssl as _;
4040
use signet_bundle as _;

tests/flashbots_provider_test.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
//! Integration tests for the FlashbotsProvider.
22
//! These tests require the `FLASHBOTS_ENDPOINT` env var to be set.
33
4-
use builder::tasks::submit::flashbots::FlashbotsProvider;
54
use alloy::{
65
primitives::FixedBytes,
76
rpc::types::mev::{EthBundleHash, MevSendBundle},
87
};
8+
use builder::tasks::submit::flashbots::FlashbotsProvider;
99
use builder::test_utils::{setup_logging, setup_test_config};
1010

1111
#[tokio::test]
@@ -15,9 +15,8 @@ async fn smoke_root_provider() {
1515
let flashbots = get_test_provider().await;
1616
assert_eq!(flashbots.relay_url.as_str(), "http://localhost:9062/");
1717

18-
let status = flashbots
19-
.bundle_status(EthBundleHash { bundle_hash: FixedBytes::default() }, 0)
20-
.await;
18+
let status =
19+
flashbots.bundle_status(EthBundleHash { bundle_hash: FixedBytes::default() }, 0).await;
2120
assert!(status.is_err());
2221
}
2322

0 commit comments

Comments
 (0)