From 74d839dba8ed76249c074b837aae0f0ae615d56d Mon Sep 17 00:00:00 2001 From: Nadav Strahilevitz Date: Fri, 8 Nov 2024 11:00:25 +0000 Subject: [PATCH] decodeas json fix --- types/trace/trace.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/trace/trace.go b/types/trace/trace.go index 708df9e9d6e0..11b37c855e33 100644 --- a/types/trace/trace.go +++ b/types/trace/trace.go @@ -184,7 +184,7 @@ type ArgMeta struct { Type string `json:"type"` // DecodeAs includes designates the decoding strategy. - DecodeAs DecodeAs `json: "-` + DecodeAs DecodeAs `json:"-"` // Zero contains the zero value for Argument.Value. // It is automatically initialized based on ArgMeta.Type when the Core DefinitionGroup is initialized. Zero interface{} `json:"-"`