Skip to content

Commit

Permalink
Fixing uncaught error
Browse files Browse the repository at this point in the history
  • Loading branch information
shahafn committed Jan 8, 2025
1 parent e1ea09c commit 26505be
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions eth/tracers/native/erc7562.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,9 @@ func (t *erc7562Tracer) GetResult() (json.RawMessage, error) {
}

callFrameJSON, err := json.Marshal(t.callstackWithOpcodes[0])
if err != nil {
return nil, err
}

// Unmarshal the generated JSON into a map
var resultMap map[string]interface{}
Expand Down

0 comments on commit 26505be

Please sign in to comment.