-
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(reth-execution-errors) no_std #10048
chore(reth-execution-errors) no_std #10048
Conversation
097ff44
to
63f0313
Compare
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.
last nit
|
||
pub mod trie; | ||
pub use trie::*; | ||
|
||
/// Transaction validation errors | ||
#[derive(thiserror_no_std::Error, Debug, Clone, PartialEq, Eq)] | ||
#[derive(Clone, Debug, Display, Eq, From, PartialEq)] |
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.
please impl From conversions manually where we had them
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.
no problem, done
@@ -172,14 +205,13 @@ impl BlockExecutionError { | |||
} | |||
|
|||
/// Internal (i.e., not validation or consensus related) `BlockExecutor` Errors | |||
#[derive(thiserror_no_std::Error, Debug)] | |||
#[derive(Display, Debug, From)] |
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 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.
done
deac851
to
fa23137
Compare
fa23137
to
d675e74
Compare
Towards #9478
Adds
no_std
support forreth-execution-errors