Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BlockHash EIP-2935 changes for pectra-devnet-5 #13349

Merged
merged 4 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions params/protocol_params.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ const (
P256VerifyGas uint64 = 3450

// EIP-2935: Historical block hashes in state
BlockHashHistoryServeWindow uint64 = 8192
BlockHashHistoryServeWindow uint64 = 8191
BlockHashOldWindow uint64 = 256

// EIP-7702
Expand All @@ -190,7 +190,7 @@ var DelegatedDesignationPrefix = []byte{0xef, 0x01, 0x00}
var BeaconRootsAddress = common.HexToAddress("0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02")

// EIP-2935: Historical block hashes in state
var HistoryStorageAddress = common.HexToAddress("0x0aae40965e6800cd9b1f4b05ff21581047e3f91e")
var HistoryStorageAddress = common.HexToAddress("0x0F792be4B0c0cb4DAE440Ef133E90C0eCD48CCCC")

// EIP-7002: Execution layer triggerable withdrawals
var WithdrawalRequestAddress = common.HexToAddress("0x09Fc772D0857550724b07B850a4323f39112aAaA")
Expand Down
1 change: 1 addition & 0 deletions tests/exec_spec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ func TestExecutionSpec(t *testing.T) {
log.Root().SetHandler(log.LvlFilterHandler(log.LvlError, log.StderrHandler))

bt := new(testMatcher)
bt.skipLoad(`^`)

dir := filepath.Join(".", "execution-spec-tests")
checkStateRoot := true
Expand Down
2 changes: 1 addition & 1 deletion tests/execution-spec-tests
Loading