Skip to content

Commit b3f2dfb

Browse files
chore: execute goimports to format the code (#2924)
<!-- Please read and fill out this form before submitting your PR. Please make sure you have reviewed our contributors guide before submitting your first PR. NOTE: PR titles should follow semantic commits: https://www.conventionalcommits.org/en/v1.0.0/ --> ## Overview <!-- Please provide an explanation of the PR, including the appropriate context, background, goal, and rationale. If there is an issue with this information, please provide a tl;dr and link the issue. Ex: Closes #<issue number> --> execute goimports to format the code Signed-off-by: findfluctuate <findfluctuate@outlook.com>
1 parent 5376e3b commit b3f2dfb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

execution/evm/test/test_helpers.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,18 @@ import (
66
"context"
77
"encoding/hex"
88
"fmt"
9-
"github.com/celestiaorg/tastora/framework/types"
10-
"github.com/golang-jwt/jwt/v5"
119
mathrand "math/rand"
1210
"net/http"
1311
"strings"
1412
"sync"
1513
"testing"
1614
"time"
1715

18-
"github.com/stretchr/testify/require"
19-
2016
"github.com/celestiaorg/tastora/framework/docker"
2117
"github.com/celestiaorg/tastora/framework/docker/evstack/reth"
18+
"github.com/celestiaorg/tastora/framework/types"
19+
"github.com/golang-jwt/jwt/v5"
20+
"github.com/stretchr/testify/require"
2221
)
2322

2423
// Test-scoped Docker client/network mapping to avoid conflicts between tests

execution/evm/test_helpers.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ package evm
22

33
import (
44
"context"
5+
"math/big"
6+
"math/rand"
7+
"testing"
8+
59
"github.com/ethereum/go-ethereum/common"
610
"github.com/ethereum/go-ethereum/core/types"
711
"github.com/ethereum/go-ethereum/crypto"
812
"github.com/ethereum/go-ethereum/ethclient"
913
"github.com/stretchr/testify/require"
10-
"math/big"
11-
"math/rand"
12-
"testing"
1314
)
1415

1516
// Transaction Helpers

0 commit comments

Comments
 (0)