Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into fix/trace-parse
Browse files Browse the repository at this point in the history
  • Loading branch information
ChihChengLiang authored Sep 25, 2023
2 parents 15f5172 + b573265 commit 395aa25
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bus-mapping/src/circuit_input_builder/input_state_ref.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,10 @@ impl<'a> CircuitInputStateRef<'a> {
{
if step.depth == 1025 {
return Ok(Some(ExecError::Depth(match step.op {
OpcodeId::CALL | OpcodeId::CALLCODE => DepthError::Call,
OpcodeId::CALL
| OpcodeId::CALLCODE
| OpcodeId::DELEGATECALL
| OpcodeId::STATICCALL => DepthError::Call,
OpcodeId::CREATE => DepthError::Create,
OpcodeId::CREATE2 => DepthError::Create2,
op => {
Expand Down

0 comments on commit 395aa25

Please sign in to comment.