File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ pub mod utils;
3131pub mod test_utils;
3232
3333// Anonymous import suppresses warnings about unused imports.
34- use openssl as _;
3534use alloy_transport as _;
3635use async_trait as _;
36+ use openssl as _;
3737use signet_bundle as _;
Original file line number Diff line number Diff line change 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 ;
54use alloy:: {
65 primitives:: FixedBytes ,
76 rpc:: types:: mev:: { EthBundleHash , MevSendBundle } ,
87} ;
8+ use builder:: tasks:: submit:: flashbots:: FlashbotsProvider ;
99use 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
You can’t perform that action at this time.
0 commit comments