Skip to content

Commit

Permalink
fmt + clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ametel01 committed Nov 12, 2024
1 parent c87e28f commit 468f8c0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/eras/dencun.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ impl BlockHeaderDencun {
let logs_bloom = <Self as BlockHeaderTrait>::hex_to_fixed_array::<256>(
&db_header.logs_bloom.unwrap_or_default(),
);
let nonce =
<Self as BlockHeaderTrait>::hex_to_fixed_array::<8>("0x0000000000000000");
let nonce = <Self as BlockHeaderTrait>::hex_to_fixed_array::<8>("0x0000000000000000");

BlockHeaderDencun {
parent_hash: H256::from_str(&db_header.parent_hash.unwrap_or_default()).unwrap(),
Expand Down

0 comments on commit 468f8c0

Please sign in to comment.