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
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,10 @@ parameter_types! {
version: hex!("05000000"),
epoch: 364032,
},
fulu: Fork {
version: hex!("06000000"), // https://notes.ethereum.org/@bbusa/fusaka-bpo-timeline
epoch: 411392,
},
};
}

Expand Down Expand Up @@ -237,6 +241,10 @@ parameter_types! {
version: hex!("05000000"),
epoch: 0,
}
fulu: Fork {
version: hex!("06000000"),
epoch: 50000000,

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is the epoch here not 0?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because the test fixtures rely on the fork version being 0x06000000 (Electra).

},
};
}

Expand Down
Loading