-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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: bump alloy-eip7702 #11986
chore: bump alloy-eip7702 #11986
Conversation
book workspace is failing to compile (because main is broken after alloy bump) it should get fine once this is merged though it's blocking some of the tests |
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, blocked by revm release tho
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, waiting on revm release
buf.put_u8(v.y_parity_byte()); | ||
buf.put_slice(r.as_le_slice()); | ||
buf.put_slice(s.as_le_slice()); | ||
buf.put_u8(self.y_parity()); |
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 correct now because this always writes the u8 value as is
Encodable
/Decodable
impls for encoding/decoding sidecars. Format for those was changed in fix: correct implementations of Encodable and Decodable for sidecars alloy-rs/alloy#1528 so I've replaced allencode
withrlp_encode_fields
anddecode
withrlp_decode_fields
.