We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f44c499 commit e9df79cCopy full SHA for e9df79c
crates/evm/evm/src/inspectors/stack.rs
@@ -581,7 +581,6 @@ impl InspectorStackRefMut<'_> {
581
582
let cached_env = ecx.env.clone();
583
584
- ecx.env.block.basefee = U256::ZERO;
585
ecx.env.tx.caller = caller;
586
ecx.env.tx.transact_to = transact_to;
587
ecx.env.tx.data = input;
@@ -594,7 +593,6 @@ impl InspectorStackRefMut<'_> {
594
593
ecx.env.tx.gas_limit =
595
std::cmp::min(ecx.env.tx.gas_limit, ecx.env.block.gas_limit.to());
596
}
597
- ecx.env.tx.gas_price = U256::ZERO;
598
599
self.inner_context_data = Some(InnerContextData { original_origin: cached_env.tx.caller });
600
self.in_inner_context = true;
0 commit comments