Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat(interpreter): derive Eq for InterpreterAction
  • Loading branch information
DaniPopes committed Apr 5, 2024
commit 2a916fedfe42d71626f6bfaa61dff0d740fc7909
4 changes: 2 additions & 2 deletions crates/interpreter/src/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub struct Interpreter {
}

/// The result of an interpreter operation.
#[derive(Debug, Clone, PartialEq, Eq)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct InterpreterResult {
/// The result of the instruction execution.
pub result: InstructionResult,
Expand All @@ -62,7 +62,7 @@ pub struct InterpreterResult {
pub gas: Gas,
}

#[derive(Debug, Default, Clone)]
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub enum InterpreterAction {
/// CALL, CALLCODE, DELEGATECALL or STATICCALL instruction called.
Call {
Expand Down