-
Notifications
You must be signed in to change notification settings - Fork 554
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: error type for block header #731
Conversation
} | ||
} | ||
|
||
#[derive(Debug, Copy, Clone, PartialEq, Eq)] |
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.
#[derive(Debug, Copy, Clone, PartialEq, Eq)] | |
/// Errors related to misconfiguration of the `BlockEnv` | |
#[derive(Debug, Copy, Clone, PartialEq, Eq)] |
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.
resolved in 498d24c
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, one nit
@hack3r-0m can you resolve the conflict, so that we can merge it? |
(failing CI fixed by #735) |
rebased it over main |
@hack3r-0m missing include. |
should close #685
I have used enum name as header since env names such as
BlockEnv
,CfgEnv
&Env
are already used as type, let me know if prefer EnvError over this and I can quickly make that change.