Skip to content

Commit

Permalink
update teleporter
Browse files Browse the repository at this point in the history
  • Loading branch information
iansuvak committed Sep 6, 2024
1 parent 49fdfc2 commit 11d7fd9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/ava-labs/avalanchego v1.11.11
github.com/ava-labs/coreth v0.13.8-fixed-genesis-upgrade.0.20240815193440-a96bc921e732
github.com/ava-labs/subnet-evm v0.6.9
github.com/ava-labs/teleporter v1.0.6
github.com/ava-labs/teleporter v1.0.7-0.20240906195543-f23da2da8fdd
github.com/aws/aws-sdk-go-v2 v1.30.5
github.com/aws/aws-sdk-go-v2/config v1.27.9
github.com/aws/aws-sdk-go-v2/service/kms v1.35.6
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ github.com/ava-labs/coreth v0.13.8-fixed-genesis-upgrade.0.20240815193440-a96bc9
github.com/ava-labs/coreth v0.13.8-fixed-genesis-upgrade.0.20240815193440-a96bc921e732/go.mod h1:RkQLaQ961Xe/sUb3ycn4Qi18vPPuEetTqDf2eDcquAs=
github.com/ava-labs/subnet-evm v0.6.9 h1:0FSPjbysSudOlMD/d0ivkli50d2ixpX3sXCi7XHfPbc=
github.com/ava-labs/subnet-evm v0.6.9/go.mod h1:dw4kg0o58dvYlndj2ZcwB7hioRc1kjg00yXYrcSmnj8=
github.com/ava-labs/teleporter v1.0.6 h1:buZULenvJLUUMyPihiSvGMag5/rm6oF8zL8YUw7NXxE=
github.com/ava-labs/teleporter v1.0.6/go.mod h1:JRfVZzLrb4qFZz2M5/c8L7cdN4A4JWJd7GIEzVeC+sg=
github.com/ava-labs/teleporter v1.0.7-0.20240906195543-f23da2da8fdd h1:vuVGcZvIdRtO9lRprPEX4Z+2Ilbri9kXaEoe0rTGk3k=
github.com/ava-labs/teleporter v1.0.7-0.20240906195543-f23da2da8fdd/go.mod h1:wgCgU6vU5MtP83otpjEin8jL2jrflVBNQCTxVXMx/kU=
github.com/aws/aws-sdk-go-v2 v1.30.5 h1:mWSRTwQAb0aLE17dSzztCVJWI9+cRMgqebndjwDyK0g=
github.com/aws/aws-sdk-go-v2 v1.30.5/go.mod h1:CT+ZPWXbYrci8chcARI3OmI/qgd+f6WtuLOoaIA8PR0=
github.com/aws/aws-sdk-go-v2/config v1.27.9 h1:gRx/NwpNEFSk+yQlgmk1bmxxvQ5TyJ76CWXs9XScTqg=
Expand Down
3 changes: 1 addition & 2 deletions scripts/versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ AVALANCHEGO_VERSION=${AVALANCHEGO_VERSION:-$(getDepVersion github.com/ava-labs/a
GINKGO_VERSION=${GINKGO_VERSION:-$(getDepVersion github.com/onsi/ginkgo/v2)}

# TODO: undo this hack once go.mod is referring to a tag rather than a commit
#SUBNET_EVM_VERSION=${SUBNET_EVM_VERSION:-$(getDepVersion github.com/ava-labs/subnet-evm)}
SUBNET_EVM_VERSION=${SUBNET_EVM_VERSION:-update-avago-teleporter}
SUBNET_EVM_VERSION=${SUBNET_EVM_VERSION:-$(getDepVersion github.com/ava-labs/subnet-evm)}

# Set golangci-lint version
GOLANGCI_LINT_VERSION=${GOLANGCI_LINT_VERSION:-'v1.60'}
Expand Down
4 changes: 4 additions & 0 deletions tests/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"os/signal"
"syscall"
"testing"
"time"

testUtils "github.com/ava-labs/awm-relayer/tests/utils"
"github.com/ava-labs/awm-relayer/utils"
Expand Down Expand Up @@ -78,7 +79,10 @@ var _ = ginkgo.BeforeSuite(func() {
utils.SanitizeHexString(teleporterDeployerTransactionStr),
)
Expect(err).Should(BeNil())
networkStartCtx, networkStartCancel := context.WithTimeout(ctx, 120*time.Second)
defer networkStartCancel()
localNetworkInstance = local.NewLocalNetwork(
networkStartCtx,
"icm-off-chain-services-e2e-test",
warpGenesisTemplateFile,
[]local.SubnetSpec{
Expand Down

0 comments on commit 11d7fd9

Please sign in to comment.