Skip to content

Commit e9df79c

Browse files
committed
fix(isolate): do not override the gas price
1 parent f44c499 commit e9df79c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

crates/evm/evm/src/inspectors/stack.rs

-2
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,6 @@ impl InspectorStackRefMut<'_> {
581581

582582
let cached_env = ecx.env.clone();
583583

584-
ecx.env.block.basefee = U256::ZERO;
585584
ecx.env.tx.caller = caller;
586585
ecx.env.tx.transact_to = transact_to;
587586
ecx.env.tx.data = input;
@@ -594,7 +593,6 @@ impl InspectorStackRefMut<'_> {
594593
ecx.env.tx.gas_limit =
595594
std::cmp::min(ecx.env.tx.gas_limit, ecx.env.block.gas_limit.to());
596595
}
597-
ecx.env.tx.gas_price = U256::ZERO;
598596

599597
self.inner_context_data = Some(InnerContextData { original_origin: cached_env.tx.caller });
600598
self.in_inner_context = true;

0 commit comments

Comments
 (0)