Skip to content
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
8 changes: 4 additions & 4 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion evm-adapters/src/evmodin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ impl<S: HostExt, Tr: Tracer> Evm<S> for EvmOdin<S, Tr> {
#[allow(deprecated)]
let message = Message {
sender: from,
destination: to,
recipient: to,
// This is only going to be different from `recipient` if
// used in a `CALLCODE` or `DELEGATECALL`, but here we're only doing calls
code_address: to,
// What should this be?
depth: 0,
kind: self.call_kind.unwrap_or(CallKind::Call),
Expand Down