Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
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
109 changes: 62 additions & 47 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion bus-mapping/src/evm/opcodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ mod gasprice;
mod mload;
mod mstore;
mod number;
mod origin;
mod selfbalance;
mod sload;
mod stackonlyop;
Expand All @@ -43,6 +44,7 @@ use extcodehash::Extcodehash;
use gasprice::GasPrice;
use mload::Mload;
use mstore::Mstore;
use origin::Origin;
use selfbalance::Selfbalance;
use sload::Sload;
use stackonlyop::StackOnlyOpcode;
Expand Down Expand Up @@ -107,7 +109,7 @@ fn fn_gen_associated_ops(opcode_id: &OpcodeId) -> FnGenAssociatedOps {
// OpcodeId::SHA3 => {},
// OpcodeId::ADDRESS => {},
// OpcodeId::BALANCE => {},
// OpcodeId::ORIGIN => {},
OpcodeId::ORIGIN => Origin::gen_associated_ops,
OpcodeId::CALLER => Caller::gen_associated_ops,
OpcodeId::CALLVALUE => Callvalue::gen_associated_ops,
OpcodeId::CALLDATASIZE => Calldatasize::gen_associated_ops,
Expand Down
Loading