Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions crates/rpc-types/src/genesis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ pub struct OpGenesisInfo {
pub holocene_time: Option<u64>,
/// isthmus hardfork timestamp
pub isthmus_time: Option<u64>,
/// interop hardfork timestamp
pub interop_time: Option<u64>,
}

impl OpGenesisInfo {
Expand Down Expand Up @@ -130,6 +132,7 @@ mod tests {
granite_time: None,
holocene_time: None,
isthmus_time: None,
interop_time: None,
}
);
}
Expand Down Expand Up @@ -189,6 +192,7 @@ mod tests {
granite_time: None,
holocene_time: None,
isthmus_time: None,
interop_time: None,
}),
base_fee_info: Some(OpBaseFeeInfo {
eip1559_elasticity: None,
Expand All @@ -212,6 +216,7 @@ mod tests {
granite_time: None,
holocene_time: None,
isthmus_time: None,
interop_time: None,
}),
base_fee_info: Some(OpBaseFeeInfo {
eip1559_elasticity: None,
Expand Down Expand Up @@ -251,6 +256,7 @@ mod tests {
granite_time: Some(0),
holocene_time: Some(0),
isthmus_time: None,
interop_time: None,
}),
base_fee_info: None,
}
Expand Down
Loading