From aac138c5216fafafb26546d198ae9e3637690fac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hagen=20H=C3=BCbel?= Date: Sun, 29 Jan 2023 12:03:00 +0100 Subject: [PATCH] - Adding missing import "encoding/json" (used in Stringer-method) - re-ordering of imports --- accounts/abi/bind/precompile_template.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/accounts/abi/bind/precompile_template.go b/accounts/abi/bind/precompile_template.go index 66340b4117..20bad6bdf5 100644 --- a/accounts/abi/bind/precompile_template.go +++ b/accounts/abi/bind/precompile_template.go @@ -45,9 +45,10 @@ Typically, custom codes are required in only those areas. package precompile import ( - "math/big" + "encoding/json" "errors" "fmt" + "math/big" "strings" "github.com/ava-labs/subnet-evm/accounts/abi"