Skip to content

Commit 7884fbc

Browse files
committed
chore: bump tastora version
1 parent 17f95ff commit 7884fbc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

execution/evm/test/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ module github.com/evstack/ev-node/execution/evm/test
33
go 1.24.6
44

55
require (
6-
github.com/celestiaorg/tastora v0.7.5
6+
github.com/celestiaorg/tastora v0.8.0
77
github.com/ethereum/go-ethereum v1.16.7
88
github.com/evstack/ev-node/execution/evm v0.0.0-00010101000000-000000000000
99
github.com/golang-jwt/jwt/v5 v5.3.0
10-
github.com/moby/moby v27.5.1+incompatible
1110
github.com/stretchr/testify v1.11.1
1211
)
1312

@@ -116,6 +115,7 @@ require (
116115
github.com/minio/sha256-simd v1.0.0 // indirect
117116
github.com/mitchellh/mapstructure v1.5.0 // indirect
118117
github.com/moby/docker-image-spec v1.3.1 // indirect
118+
github.com/moby/moby v27.5.1+incompatible // indirect
119119
github.com/moby/sys/sequential v0.6.0 // indirect
120120
github.com/mtibben/percent v0.2.1 // indirect
121121
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect

execution/evm/test/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ github.com/btcsuite/btcd/btcutil v1.1.6 h1:zFL2+c3Lb9gEgqKNzowKUPQNb8jV7v5Oaodi/
6666
github.com/btcsuite/btcd/btcutil v1.1.6/go.mod h1:9dFymx8HpuLqBnsPELrImQeTQfKBQqzqGbbV3jK55aE=
6767
github.com/celestiaorg/go-square/v3 v3.0.0 h1:ivLUUuVr7SpkvPiPLPvuH8/Vrm+iw9X3QL8gX25j+Sk=
6868
github.com/celestiaorg/go-square/v3 v3.0.0/go.mod h1:IROQinUbHNyFWW1J5idanVLOSLHaK1wWwVmuVSfiCVo=
69-
github.com/celestiaorg/tastora v0.7.5 h1:LT1MPpRB7Jd2LcBBoVwtimBh1NIxueG7c5DQwfTpZ0g=
70-
github.com/celestiaorg/tastora v0.7.5/go.mod h1:Xw44XeRN2T/kSdopVCJjNhwFwRSO58wTW8GrVP7OWFI=
69+
github.com/celestiaorg/tastora v0.8.0 h1:+FWAIsP2onwwqPTGzBLIBtx8B1h9sImdx4msv2N4DsI=
70+
github.com/celestiaorg/tastora v0.8.0/go.mod h1:9b5GsL/+pKEw3HZG/nd3qhnGadUnNNoTBygy9HeGIyw=
7171
github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=
7272
github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8=
7373
github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=

execution/evm/test/test_helpers.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"context"
88
"encoding/hex"
99
"fmt"
10+
"github.com/celestiaorg/tastora/framework/types"
1011
"github.com/golang-jwt/jwt/v5"
1112
mathrand "math/rand"
1213
"net/http"
@@ -19,12 +20,11 @@ import (
1920

2021
"github.com/celestiaorg/tastora/framework/docker"
2122
"github.com/celestiaorg/tastora/framework/docker/evstack/reth"
22-
dockerclient "github.com/moby/moby/client"
2323
)
2424

2525
// Test-scoped Docker client/network mapping to avoid conflicts between tests
2626
var (
27-
dockerClients = make(map[string]*dockerclient.Client)
27+
dockerClients = make(map[string]types.TastoraDockerClient)
2828
dockerNetworks = make(map[string]string)
2929
dockerMutex sync.RWMutex
3030
)
@@ -41,7 +41,7 @@ func randomString(n int) string {
4141
}
4242

4343
// getTestScopedDockerSetup returns a Docker client and network ID that are scoped to the specific test.
44-
func getTestScopedDockerSetup(t *testing.T) (*dockerclient.Client, string) {
44+
func getTestScopedDockerSetup(t *testing.T) (types.TastoraDockerClient, string) {
4545
t.Helper()
4646

4747
testKey := t.Name()
@@ -50,7 +50,7 @@ func getTestScopedDockerSetup(t *testing.T) (*dockerclient.Client, string) {
5050

5151
dockerCli, exists := dockerClients[testKey]
5252
if !exists {
53-
cli, netID := docker.DockerSetup(t)
53+
cli, netID := docker.Setup(t)
5454
dockerClients[testKey] = cli
5555
dockerNetworks[testKey] = netID
5656
dockerCli = cli

0 commit comments

Comments
 (0)