Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add new param to additional constructor calls
  • Loading branch information
Eric Bogard committed Jun 26, 2024
commit 36962b6ecf4f9aba9f49993f7a47e11d5bc62fd4
2 changes: 2 additions & 0 deletions crates/revm/src/context/inner_evm_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ impl<DB: Database> InnerEvmContext<DB> {
input.clone(),
// fine to clone as it is Bytes.
Bytecode::Eof(Arc::new(initcode.clone())),
created_address,
None,
created_address,
inputs.caller,
Expand Down Expand Up @@ -475,6 +476,7 @@ impl<DB: Database> InnerEvmContext<DB> {
let contract = Contract::new(
Bytes::new(),
bytecode,
created_address,
Some(init_code_hash),
created_address,
inputs.caller,
Expand Down