Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Commit

Permalink
missed one trailing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Nov 3, 2023
1 parent 018789f commit 9be3212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rpc/rpc/src/eth/api/block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ where

if block_id.is_pending() {
// Pending block can be fetched directly without need for caching
return Ok(self.provider().pending_block()?.map(|block| block.body.len()));
return Ok(self.provider().pending_block()?.map(|block| block.body.len()))
}

let block_hash = match self.provider().block_hash_for_id(block_id)? {
Expand Down

0 comments on commit 9be3212

Please sign in to comment.