diff --git a/crates/derive/src/online/alloy_providers.rs b/crates/derive/src/online/alloy_providers.rs index b3ee0e2a3..5f25f392e 100644 --- a/crates/derive/src/online/alloy_providers.rs +++ b/crates/derive/src/online/alloy_providers.rs @@ -289,7 +289,8 @@ impl AlloyL2ChainProvider { /// Returns the latest L2 block number. pub async fn latest_block_number(&mut self) -> Result { - let b: TransportResult = self.inner.raw_request("eth_blockNumber".into(), ()).await; + let b: TransportResult = + self.inner.raw_request("eth_blockNumber".into(), ()).await; match b { Ok(s) => { let s = alloc::string::String::from(s.trim_start_matches("0x"));