Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
anhductn2001 committed Dec 13, 2024
1 parent 4a87291 commit 7bc1196
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions tests/fullnode_sync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
// StartDA start grpc DALC server
func StartDA(ctx context.Context, t *testing.T, client *client.Client, net string) {
fmt.Println("Starting pull image ...")
out, err := client.ImagePull(ctx, "ghcr.io/decentrio/dymint:srene-hardfork-fix-arm", types.ImagePullOptions{})
out, err := client.ImagePull(ctx, "ghcr.io/decentrio/dymint:srene-hardfork-fix", types.ImagePullOptions{})
require.NoError(t, err)
defer out.Close()

Expand All @@ -57,14 +57,14 @@ func StartDA(ctx context.Context, t *testing.T, client *client.Client, net strin
DNS: []string{},
ExtraHosts: []string{"host.docker.internal:host-gateway"},
}
// time.Sleep(2 * time.Minute)
time.Sleep(2 * time.Minute)
// Create the container
fmt.Println("Creating container ...")
resp, err := client.ContainerCreate(
ctx,
&container.Config{
Image: "ghcr.io/decentrio/dymint:srene-hardfork-fix-arm", // Image to run
Tty: true, // Attach to a TTY
Image: "ghcr.io/decentrio/dymint:srene-hardfork-fix", // Image to run
Tty: true, // Attach to a TTY
},
hostConfig, networkConfig, nil, "grpc-da-container",
)
Expand Down
2 changes: 1 addition & 1 deletion tests/sequencer_rotation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2986,7 +2986,7 @@ func Test_SqcRotation_OneSqc_P2P_EVM(t *testing.T) {
lastBlock, err := rollapp1.Height(ctx)
require.NoError(t, err)

time.Sleep(200 * time.Second)
time.Sleep(250 * time.Second)

currentProposer, err = dymension.GetNode().GetProposerByRollapp(ctx, rollapp1.Config().ChainID, dymensionUserAddr)
require.NoError(t, err)
Expand Down

0 comments on commit 7bc1196

Please sign in to comment.