From 6dfe2e4160ff5f7b6169116edd75cda687de37cd Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Mon, 4 Dec 2023 14:53:11 +0100 Subject: [PATCH] common/hexutil: goimports --- common/hexutil/json_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/hexutil/json_test.go b/common/hexutil/json_test.go index 766a63a4b2..7cca300951 100644 --- a/common/hexutil/json_test.go +++ b/common/hexutil/json_test.go @@ -21,9 +21,10 @@ import ( "encoding/hex" "encoding/json" "errors" - "github.com/holiman/uint256" "math/big" "testing" + + "github.com/holiman/uint256" ) func checkError(t *testing.T, input string, got, want error) bool {