Skip to content

Commit

Permalink
workaround docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
gitferry committed Nov 29, 2024
1 parent 0d39e08 commit 608f463
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions itest/container/config.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package container

import (
"github.com/babylonlabs-io/finality-provider/testutil"
"github.com/stretchr/testify/require"
"testing"
)

Expand All @@ -20,10 +18,11 @@ const (

// NewImageConfig returns ImageConfig needed for running e2e test.
func NewImageConfig(t *testing.T) ImageConfig {
babylondVersion, err := testutil.GetBabylonVersion()
require.NoError(t, err)
// TODO: currently use specific commit, should uncomment after having a new release
// babylondVersion, err := testutil.GetBabylonVersion()
// require.NoError(t, err)
return ImageConfig{
BabylonRepository: dockerBabylondRepository,
BabylonVersion: babylondVersion,
BabylonVersion: "457909d8c43c8483655c2d3a3a01cd2190344fd4",
}
}

0 comments on commit 608f463

Please sign in to comment.