order the imports

This commit is contained in:
maskpp 2025-07-30 22:04:14 +08:00
parent 12a76b3b2b
commit 946367b68e

View file

@ -21,6 +21,13 @@ import (
"crypto/sha256" "crypto/sha256"
"errors" "errors"
"fmt" "fmt"
"reflect"
"strconv"
"sync"
"sync/atomic"
"time"
"unicode"
"github.com/ethereum/go-ethereum/beacon/engine" "github.com/ethereum/go-ethereum/beacon/engine"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/common/hexutil"
@ -38,12 +45,6 @@ import (
"github.com/ethereum/go-ethereum/params/forks" "github.com/ethereum/go-ethereum/params/forks"
"github.com/ethereum/go-ethereum/rlp" "github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rpc" "github.com/ethereum/go-ethereum/rpc"
"reflect"
"strconv"
"sync"
"sync/atomic"
"time"
"unicode"
) )
// Register adds the engine API to the full node. // Register adds the engine API to the full node.