-
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: remove serde support from reth-codec #9570
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.
awesome, one q
@@ -556,7 +557,7 @@ mod tests { | |||
} | |||
|
|||
#[reth_codec] | |||
#[derive(Debug, PartialEq, Clone)] | |||
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] |
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.
do we need this here?
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.
reth/crates/storage/codecs/src/lib.rs
Lines 621 to 623 in ffb44e6
#[test_fuzz::test_fuzz] | |
fn compact_test_enum_all_variants(var0: TestEnum, var1: TestEnum, var2: TestEnum) { | |
let mut buf = vec![]; |
This place needs to TestEnum Serialize, so TestStruct also needs.
@@ -608,7 +609,7 @@ mod tests { | |||
} | |||
|
|||
#[reth_codec] | |||
#[derive(Debug, PartialEq, Clone, Default)] | |||
#[derive(Debug, PartialEq, Clone, Default, Serialize, Deserialize)] |
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.
same
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.
same above
chore: remove serde support from reth-codec
aa7a3df
to
b2a5382
Compare
closes #9558