-
Notifications
You must be signed in to change notification settings - Fork 21.1k
Add eth_config
#32239
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
base: master
Are you sure you want to change the base?
Add eth_config
#32239
Conversation
|
||
switch { | ||
case c.IsOsaka(london, time): | ||
next = c.OsakaTime |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't it be better to return something like Maxuint64 here
@@ -1135,6 +1135,34 @@ func (api *BlockChainAPI) CreateAccessList(ctx context.Context, args Transaction | |||
return result, nil | |||
} | |||
|
|||
type config struct { | |||
ActivationTime uint64 `json:"activationTime"` | |||
BlobSchedule *params.BlobConfig `json:"blobSchedule"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BlobSchedule *params.BlobConfig `json:"blobSchedule"` | |
BlobSchedule *params.BlobConfig `json:"blobsSchedule"` |
According to the spec this should be blobsSchedule, I think we should change the spec here though...
@@ -1135,6 +1135,34 @@ func (api *BlockChainAPI) CreateAccessList(ctx context.Context, args Transaction | |||
return result, nil | |||
} | |||
|
|||
type config struct { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we get a testcase for this, there are some tests in the EIP that we could use
Will probably be mostly supplanted by #32224, but this should do for now for devnet 3.