From 4c828c98bc9ab3796dc2c0ddfa7283bed2020bd1 Mon Sep 17 00:00:00 2001 From: rafaelss <5679073+r4f4ss@users.noreply.github.com> Date: Wed, 6 Nov 2024 12:07:02 -0300 Subject: [PATCH] move third-party import to package of project --- cmd/shisui/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/shisui/main.go b/cmd/shisui/main.go index 6544576c68..921bfa6dee 100644 --- a/cmd/shisui/main.go +++ b/cmd/shisui/main.go @@ -14,8 +14,6 @@ import ( "strings" "syscall" "time" - - "github.com/ethereum/go-ethereum/internal/debug" "os" @@ -23,6 +21,7 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/crypto" + "github.com/ethereum/go-ethereum/internal/debug" "github.com/ethereum/go-ethereum/internal/flags" "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/metrics"