-
Notifications
You must be signed in to change notification settings - Fork 11
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
chore(op-test-vectors): Update ExecutionFixture
to use op-alloy-consensus
types
#73
Conversation
@@ -183,6 +201,94 @@ impl Opt8n { | |||
} | |||
} | |||
|
|||
// TODO: Consider adding `From` implementation for |
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.
Agree - I will add issues in op-alloy for this.
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.
Sounds good, I can open a PR for these issues on op-alloy
later today/tomorrow.
@@ -159,53 +98,4 @@ mod tests { | |||
.expect("failed to parse expected result"); | |||
assert_eq!(serialized_value, expected_value); | |||
} | |||
|
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.
Can we add a test/tests here for deserializing the op types?
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.
Approved, let's just add a few tests for deserialization
Merging to unblock. |
This PR addresses #40, replacing the all
anvil
types in theExecutionFixture
struct with types fromop-alloy-consensus
. Additonallyopt8n
was updated to reflect these changes.