From bf165bba68bf2fed9ce101cb7f733860d6f523e5 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Tue, 12 Oct 2021 12:48:23 +0200 Subject: [PATCH] eth/tracers: minor fix --- eth/tracers/native/call.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/tracers/native/call.go b/eth/tracers/native/call.go index 22f0f2ccaf..a85a1b5fab 100644 --- a/eth/tracers/native/call.go +++ b/eth/tracers/native/call.go @@ -20,10 +20,10 @@ type CallFrame struct { Type string `json:"type"` From string `json:"from"` To string `json:"to"` - Input string `json:"input"` - Gas string `json:"gas"` Value string `json:"value,omitempty"` + Gas string `json:"gas"` GasUsed string `json:"gasUsed"` + Input string `json:"input"` Output string `json:"output"` Error string `json:"error,omitempty"` Calls []CallFrame `json:"calls,omitempty"`