Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
yutianwu committed Jul 31, 2024
1 parent d496b81 commit f03610c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/evm/src/system_calls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ where
{
// Return immediately if beaconRoot equals the zero hash when using the Parlia engine.
if chain_spec.is_bohr_active_at_timestamp(block_timestamp) &&
parent_beacon_block_root == Some(B256::ZERO) {
parent_beacon_block_root == Some(B256::ZERO)
{
return Ok(())
}

Expand Down

0 comments on commit f03610c

Please sign in to comment.