mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 17:03:46 +00:00
Fixing uncaught error
This commit is contained in:
parent
6c913faca6
commit
d0755a687e
1 changed files with 3 additions and 0 deletions
|
|
@ -327,6 +327,9 @@ func (t *erc7562Tracer) GetResult() (json.RawMessage, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
callFrameJSON, err := json.Marshal(t.callstackWithOpcodes[0])
|
callFrameJSON, err := json.Marshal(t.callstackWithOpcodes[0])
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
// Unmarshal the generated JSON into a map
|
// Unmarshal the generated JSON into a map
|
||||||
var resultMap map[string]interface{}
|
var resultMap map[string]interface{}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue