eth/tracers: minor fix
This commit is contained in:
parent
340c773201
commit
bf165bba68
|
@ -20,10 +20,10 @@ type CallFrame struct {
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
From string `json:"from"`
|
From string `json:"from"`
|
||||||
To string `json:"to"`
|
To string `json:"to"`
|
||||||
Input string `json:"input"`
|
|
||||||
Gas string `json:"gas"`
|
|
||||||
Value string `json:"value,omitempty"`
|
Value string `json:"value,omitempty"`
|
||||||
|
Gas string `json:"gas"`
|
||||||
GasUsed string `json:"gasUsed"`
|
GasUsed string `json:"gasUsed"`
|
||||||
|
Input string `json:"input"`
|
||||||
Output string `json:"output"`
|
Output string `json:"output"`
|
||||||
Error string `json:"error,omitempty"`
|
Error string `json:"error,omitempty"`
|
||||||
Calls []CallFrame `json:"calls,omitempty"`
|
Calls []CallFrame `json:"calls,omitempty"`
|
||||||
|
|
Loading…
Reference in New Issue