style: pass clippy check

This commit is contained in:
Quertyy
2025-09-19 13:23:49 +07:00
parent 4896e4f0ea
commit 3080665702

View File

@ -38,7 +38,7 @@ where
{ {
async fn block_precompile_data(&self, block: BlockId) -> RpcResult<HlExtras> { async fn block_precompile_data(&self, block: BlockId) -> RpcResult<HlExtras> {
trace!(target: "rpc::eth", ?block, "Serving eth_blockPrecompileData"); trace!(target: "rpc::eth", ?block, "Serving eth_blockPrecompileData");
let hl_extras = self.eth_api.get_hl_extras(block).map_err(|e| EthApiError::from(e))?; let hl_extras = self.eth_api.get_hl_extras(block).map_err(EthApiError::from)?;
Ok(hl_extras) Ok(hl_extras)
} }
} }