We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--isolate
1 parent bf51895 commit d3572afCopy full SHA for d3572af
crates/evm/evm/src/inspectors/stack.rs
@@ -702,13 +702,16 @@ impl<'a, DB: DatabaseExt> Inspector<DB> for InspectorStackRefMut<'a> {
702
ecx
703
);
704
705
+ ecx.journaled_state.depth += self.in_inner_context as usize;
706
if let Some(cheatcodes) = self.cheatcodes.as_deref_mut() {
707
if let Some(output) = cheatcodes.call_with_executor(ecx, call, self.inner) {
708
if output.result.result != InstructionResult::Continue {
709
+ ecx.journaled_state.depth -= self.in_inner_context as usize;
710
return Some(output)
711
}
712
713
714
715
716
if self.enable_isolation &&
717
call.scheme == CallScheme::Call &&
0 commit comments