-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
feat(l2-withdrawals): Define OpEngineApi
#14414
Conversation
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.
lgtm, I removed the crunchy hack which I think was a byproduct of some cargo update
crates/optimism/rpc/Cargo.toml
Outdated
# required for windows target os | ||
crunchy.workspace = true |
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.
this looks weird here, we didn't need this before,
there is an issue with crunchy 0.2.3 so maybe related to that, if accidentally bumped
imo we should be able to remove this here
@@ -56,7 +60,7 @@ pub trait OpEngineApi<Engine: EngineTypes> { | |||
#[method(name = "newPayloadV4")] | |||
async fn new_payload_v4( | |||
&self, | |||
payload: ExecutionPayloadV3, | |||
payload: OpExecutionPayloadV4, |
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.
whoopsie :)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Closes #14380
Towards: #13831