-
Notifications
You must be signed in to change notification settings - Fork 8
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
feat: R55 crate error handling #13
base: main
Are you sure you want to change the base?
Conversation
0xurb
commented
Nov 14, 2024
•
edited
Loading
edited
- r55 crate
- syscalls crate
- interpreter crate
eth-riscv-interpreter.workspace = true | ||
eth-riscv-syscalls.workspace = true | ||
|
||
revm = "9.0.0" | ||
#revm = { git = "https://github.com/r0qs/revm" } |
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.
we can remove this actually
eth-riscv-interpreter.workspace = true | ||
eth-riscv-syscalls.workspace = true | ||
|
||
revm = "9.0.0" | ||
#revm = { git = "https://github.com/r0qs/revm" } | ||
revm = { version = "9.0.0", features = ["std"] } |
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.
why do we need std?
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.
for error conversion
RvEmuException(Exception), | ||
/// EVM error | ||
#[error(transparent)] | ||
EvmError(#[from] EVMError<DB::Error>), |
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.
where do we use this one?
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.
on evm transact we use EVM error, exception is on getting dram slice