From fc9635e5bee9c67cb9eba87854ad440d70318106 Mon Sep 17 00:00:00 2001 From: findfluctuate Date: Fri, 12 Dec 2025 19:59:17 +0800 Subject: [PATCH] chore: execute goimports to format the code Signed-off-by: findfluctuate --- execution/evm/test/test_helpers.go | 7 +++---- execution/evm/test_helpers.go | 7 ++++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/execution/evm/test/test_helpers.go b/execution/evm/test/test_helpers.go index e51a4e545b..d2c0500528 100644 --- a/execution/evm/test/test_helpers.go +++ b/execution/evm/test/test_helpers.go @@ -6,8 +6,6 @@ import ( "context" "encoding/hex" "fmt" - "github.com/celestiaorg/tastora/framework/types" - "github.com/golang-jwt/jwt/v5" mathrand "math/rand" "net/http" "strings" @@ -15,10 +13,11 @@ import ( "testing" "time" - "github.com/stretchr/testify/require" - "github.com/celestiaorg/tastora/framework/docker" "github.com/celestiaorg/tastora/framework/docker/evstack/reth" + "github.com/celestiaorg/tastora/framework/types" + "github.com/golang-jwt/jwt/v5" + "github.com/stretchr/testify/require" ) // Test-scoped Docker client/network mapping to avoid conflicts between tests diff --git a/execution/evm/test_helpers.go b/execution/evm/test_helpers.go index 3ee1d65723..1e97d446da 100644 --- a/execution/evm/test_helpers.go +++ b/execution/evm/test_helpers.go @@ -2,14 +2,15 @@ package evm import ( "context" + "math/big" + "math/rand" + "testing" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/ethclient" "github.com/stretchr/testify/require" - "math/big" - "math/rand" - "testing" ) // Transaction Helpers