Skip to content

Commit bb8e705

Browse files
committed
fmt
1 parent 685a903 commit bb8e705

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
@@ -31,7 +31,7 @@ pub mod utils;
3131
pub mod test_utils;
3232

3333
// Anonymous import suppresses warnings about unused imports.
34-
use openssl as _;
3534
use alloy_transport as _;
3635
use async_trait as _;
36+
use openssl as _;
3737
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)