Skip to content

Commit 8c7c655

Browse files
bump icad tag with ibc-go v5.0.0 + gofumpt (#2461)
1 parent 503b9eb commit 8c7c655

File tree

7 files changed

+26
-27
lines changed

7 files changed

+26
-27
lines changed

.github/workflows/e2e-manual-icad.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
default: master
2525
options:
2626
- master
27-
- v0.3.3
27+
- v0.3.4
2828
- v0.2.3
2929
- v0.1.4
3030
chain-b-tag:
@@ -34,7 +34,7 @@ on:
3434
type: choice
3535
options:
3636
- master
37-
- v0.3.3
37+
- v0.3.4
3838
- v0.2.3
3939
- v0.1.4
4040
relayer-tag:

e2e/scripts/test-matricies/icad/test-matrix.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@
44
"chain-binary": "icad",
55
"tests": [
66
{
7-
"chain-a-tag": "v0.3.3",
7+
"chain-a-tag": "v0.3.4",
88
"chain-b-tag": "v0.1.4"
99
},
1010
{
1111
"chain-a-tag": "v0.1.4",
12-
"chain-b-tag": "v0.3.3"
12+
"chain-b-tag": "v0.3.4"
1313
},
1414
{
1515
"chain-a-tag": "v0.2.3",
16-
"chain-b-tag": "v0.3.3"
16+
"chain-b-tag": "v0.3.4"
1717
},
1818
{
19-
"chain-a-tag": "v0.3.3",
19+
"chain-a-tag": "v0.3.4",
2020
"chain-b-tag": "v0.2.3"
2121
},
2222
{
23-
"chain-a-tag": "v0.3.3",
24-
"chain-b-tag": "v0.3.3"
23+
"chain-a-tag": "v0.3.4",
24+
"chain-b-tag": "v0.3.4"
2525
},
2626
{
2727
"chain-a-tag": "v0.2.3",
@@ -39,15 +39,15 @@
3939
"tests": [
4040
{
4141
"chain-a-tag": "v0.2.3",
42-
"chain-b-tag": "v0.3.3"
42+
"chain-b-tag": "v0.3.4"
4343
},
4444
{
45-
"chain-a-tag": "v0.3.3",
45+
"chain-a-tag": "v0.3.4",
4646
"chain-b-tag": "v0.2.3"
4747
},
4848
{
49-
"chain-a-tag": "v0.3.3",
50-
"chain-b-tag": "v0.3.3"
49+
"chain-a-tag": "v0.3.4",
50+
"chain-b-tag": "v0.3.4"
5151
},
5252
{
5353
"chain-a-tag": "v0.2.3",

e2e/scripts/test-matricies/main/test-matrix.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -120,24 +120,24 @@
120120
"chain-binary": "icad",
121121
"tests": [
122122
{
123-
"chain-a-tag": "v0.3.3",
123+
"chain-a-tag": "v0.3.4",
124124
"chain-b-tag": "v0.1.4"
125125
},
126126
{
127127
"chain-a-tag": "v0.1.4",
128-
"chain-b-tag": "v0.3.3"
128+
"chain-b-tag": "v0.3.4"
129129
},
130130
{
131131
"chain-a-tag": "v0.2.3",
132-
"chain-b-tag": "v0.3.3"
132+
"chain-b-tag": "v0.3.4"
133133
},
134134
{
135-
"chain-a-tag": "v0.3.3",
135+
"chain-a-tag": "v0.3.4",
136136
"chain-b-tag": "v0.2.3"
137137
},
138138
{
139-
"chain-a-tag": "v0.3.3",
140-
"chain-b-tag": "v0.3.3"
139+
"chain-a-tag": "v0.3.4",
140+
"chain-b-tag": "v0.3.4"
141141
},
142142
{
143143
"chain-a-tag": "v0.2.3",
@@ -155,15 +155,15 @@
155155
"tests": [
156156
{
157157
"chain-a-tag": "v0.2.3",
158-
"chain-b-tag": "v0.3.3"
158+
"chain-b-tag": "v0.3.4"
159159
},
160160
{
161-
"chain-a-tag": "v0.3.3",
161+
"chain-a-tag": "v0.3.4",
162162
"chain-b-tag": "v0.2.3"
163163
},
164164
{
165-
"chain-a-tag": "v0.3.3",
166-
"chain-b-tag": "v0.3.3"
165+
"chain-a-tag": "v0.3.4",
166+
"chain-b-tag": "v0.3.4"
167167
},
168168
{
169169
"chain-a-tag": "v0.2.3",

e2e/tests/interchain_accounts/base_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ func (s *InterchainAccountsTestSuite) RegisterInterchainAccount(ctx context.Cont
4242

4343
// RegisterCounterPartyPayee broadcasts a MsgRegisterCounterpartyPayee message.
4444
func (s *InterchainAccountsTestSuite) RegisterCounterPartyPayee(ctx context.Context, chain *cosmos.CosmosChain,
45-
user *ibc.Wallet, portID, channelID, relayerAddr, counterpartyPayeeAddr string) (sdk.TxResponse, error) {
45+
user *ibc.Wallet, portID, channelID, relayerAddr, counterpartyPayeeAddr string,
46+
) (sdk.TxResponse, error) {
4647
msg := feetypes.NewMsgRegisterCounterpartyPayee(portID, channelID, relayerAddr, counterpartyPayeeAddr)
4748
return s.BroadcastMessages(ctx, chain, user, msg)
4849
}
@@ -97,7 +98,6 @@ func (s *InterchainAccountsTestSuite) TestMsgSubmitTx_SuccessfulTransfer() {
9798
})
9899

99100
t.Run("interchain account executes a bank transfer on behalf of the corresponding owner account", func(t *testing.T) {
100-
101101
t.Run("fund interchain account wallet", func(t *testing.T) {
102102
// fund the host account account so it has some $$ to send
103103
err := chainB.SendFunds(ctx, ibctest.FaucetAccountKeyName, ibc.WalletAmount{

e2e/tests/interchain_accounts/incentivized_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,6 @@ func (s *IncentivizedInterchainAccountsTestSuite) TestMsgSubmitTx_FailedBankSend
257257
})
258258

259259
t.Run("execute interchain account bank send through controller", func(t *testing.T) {
260-
261260
t.Run("register counterparty payee", func(t *testing.T) {
262261
resp, err := s.RegisterCounterPartyPayee(ctx, chainB, chainBRelayerUser, channelOutput.Counterparty.PortID, channelOutput.Counterparty.ChannelID, chainBRelayerWallet.Address, chainARelayerWallet.Address)
263262
s.Require().NoError(err)

e2e/testsuite/testsuite.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,8 @@ func (s *E2ETestSuite) BroadcastMessages(ctx context.Context, chain *cosmos.Cosm
236236

237237
// RegisterCounterPartyPayee broadcasts a MsgRegisterCounterpartyPayee message.
238238
func (s *E2ETestSuite) RegisterCounterPartyPayee(ctx context.Context, chain *cosmos.CosmosChain,
239-
user *ibc.Wallet, portID, channelID, relayerAddr, counterpartyPayeeAddr string) (sdk.TxResponse, error) {
239+
user *ibc.Wallet, portID, channelID, relayerAddr, counterpartyPayeeAddr string,
240+
) (sdk.TxResponse, error) {
240241
msg := feetypes.NewMsgRegisterCounterpartyPayee(portID, channelID, relayerAddr, counterpartyPayeeAddr)
241242
return s.BroadcastMessages(ctx, chain, user, msg)
242243
}

modules/core/04-channel/keeper/keeper_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ func (suite *KeeperTestSuite) TestGetAppVersion() {
8585

8686
// TestGetAllChannelsWithPortPrefix verifies ports are filtered correctly using a port prefix.
8787
func (suite *KeeperTestSuite) TestGetAllChannelsWithPortPrefix() {
88-
8988
const (
9089
secondChannelID = "channel-1"
9190
differentChannelPortID = "different-portid"

0 commit comments

Comments
 (0)