Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
fix: use U64 instead of u64
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstevens19 committed Oct 3, 2024
1 parent 967d3a2 commit f411310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethers-core/src/types/log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub struct Log {

#[serde(rename = "blockTimestamp")]
#[serde(skip_serializing_if = "Option::is_none")]
pub block_timestamp: Option<u64>,
pub block_timestamp: Option<U64>,

/// Transaction Hash
#[serde(rename = "transactionHash")]
Expand Down

0 comments on commit f411310

Please sign in to comment.