From 946367b68ebc0f9840049a569f8aea7e81242a23 Mon Sep 17 00:00:00 2001 From: maskpp Date: Wed, 30 Jul 2025 22:04:14 +0800 Subject: [PATCH] order the imports --- eth/catalyst/api.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/eth/catalyst/api.go b/eth/catalyst/api.go index add07ebe00..b37b53d5d0 100644 --- a/eth/catalyst/api.go +++ b/eth/catalyst/api.go @@ -21,6 +21,13 @@ import ( "crypto/sha256" "errors" "fmt" + "reflect" + "strconv" + "sync" + "sync/atomic" + "time" + "unicode" + "github.com/ethereum/go-ethereum/beacon/engine" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" @@ -38,12 +45,6 @@ import ( "github.com/ethereum/go-ethereum/params/forks" "github.com/ethereum/go-ethereum/rlp" "github.com/ethereum/go-ethereum/rpc" - "reflect" - "strconv" - "sync" - "sync/atomic" - "time" - "unicode" ) // Register adds the engine API to the full node.