Skip to content

Commit

Permalink
v0.11: Update fork height (#1338)
Browse files Browse the repository at this point in the history
* add trace jsons to testdata

* update mainnet fork height; remove version field in trace
  • Loading branch information
lispc authored Jun 13, 2024
1 parent d46f7d7 commit 1e94862
Show file tree
Hide file tree
Showing 4 changed files with 63,338 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eth-types/src/forks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ pub fn hardfork_heights() -> Vec<(HardforkId, u64, u64)> {
vec![
(HardforkId::Curie, SCROLL_DEVNET_CHAIN_ID, 5), // devnet
(HardforkId::Curie, SCROLL_TESTNET_CHAIN_ID, 4740239), // testnet
(HardforkId::Curie, SCROLL_MAINNET_CHAIN_ID, 6895269), // mainnet
(HardforkId::Curie, SCROLL_MAINNET_CHAIN_ID, 6924036), // mainnet
]
}
2 changes: 1 addition & 1 deletion eth-types/src/l2_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pub struct BytecodeTrace {
#[derive(Deserialize, Serialize, Default, Debug, Clone)]
pub struct BlockTrace {
/// Version string
pub version: String,
//pub version: String,
/// chain id
#[serde(rename = "chainID", default)]
pub chain_id: u64,
Expand Down
Loading

0 comments on commit 1e94862

Please sign in to comment.