diff --git a/.github/workflows/e2e-manual-icad.yaml b/.github/workflows/e2e-manual-icad.yaml index de31c7064ac..5eceaa8d9de 100644 --- a/.github/workflows/e2e-manual-icad.yaml +++ b/.github/workflows/e2e-manual-icad.yaml @@ -25,7 +25,7 @@ on: - master - v0.3.2 - v0.2.2 - - v0.1.2 + - v0.1.3 chain-b-tag: default: master description: 'The tag to use for chain B' @@ -35,7 +35,7 @@ on: - master - v0.3.2 - v0.2.2 - - v0.1.2 + - v0.1.3 relayer-tag: description: 'The tag to use for the relayer' required: true diff --git a/e2e/interchain_accounts_test.go b/e2e/interchain_accounts_test.go index 5a3fe927021..6c17b00885d 100644 --- a/e2e/interchain_accounts_test.go +++ b/e2e/interchain_accounts_test.go @@ -17,6 +17,7 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" + icatypes "github.com/cosmos/ibc-go/v5/modules/apps/27-interchain-accounts/types" feetypes "github.com/cosmos/ibc-go/v5/modules/apps/29-fee/types" ibctesting "github.com/cosmos/ibc-go/v5/testing" ) @@ -59,7 +60,7 @@ func (s *InterchainAccountsTestSuite) TestMsgSubmitTx_SuccessfulTransfer() { var hostAccount string t.Run("register interchain account", func(t *testing.T) { - version := "" // allow app to handle the version as appropriate. + version := icatypes.NewDefaultMetadataString(ibctesting.FirstConnectionID, ibctesting.FirstConnectionID) msgRegisterAccount := intertxtypes.NewMsgRegisterAccount(controllerAccount.Bech32Address(chainA.Config().Bech32Prefix), ibctesting.FirstConnectionID, version) err := s.RegisterInterchainAccount(ctx, chainA, controllerAccount, msgRegisterAccount) s.Require().NoError(err) @@ -153,7 +154,7 @@ func (s *InterchainAccountsTestSuite) TestMsgSubmitTx_FailedTransfer_Insufficien var hostAccount string t.Run("register interchain account", func(t *testing.T) { - version := "" // allow app to handle the version as appropriate. + version := icatypes.NewDefaultMetadataString(ibctesting.FirstConnectionID, ibctesting.FirstConnectionID) msgRegisterAccount := intertxtypes.NewMsgRegisterAccount(controllerAccount.Bech32Address(chainA.Config().Bech32Prefix), ibctesting.FirstConnectionID, version) err := s.RegisterInterchainAccount(ctx, chainA, controllerAccount, msgRegisterAccount) s.Require().NoError(err)