Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add UpdateChannel method to Endpoint #5725

Merged
merged 16 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1196,9 +1196,9 @@ func (suite *InterchainAccountsTestSuite) TestClosedChannelReopensWithMsgServer(
suite.Require().NoError(err)

// set the channel state to closed
err = path.EndpointA.SetChannelState(channeltypes.CLOSED)
err = path.EndpointA.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)
err = path.EndpointB.SetChannelState(channeltypes.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)

// reset endpoint channel ids
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ func (suite *KeeperTestSuite) TestOnChanOpenInit() {
err := SetupICAPath(path, TestOwnerAddress)
suite.Require().NoError(err)

err = path.EndpointA.SetChannelState(channeltypes.CLOSED)
err = path.EndpointA.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)

err = path.EndpointB.SetChannelState(channeltypes.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)

path.EndpointA.ChannelID = ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (suite *KeeperTestSuite) TestSendTx() {
{
"sendPacket fails - channel closed",
func() {
err := path.EndpointA.SetChannelState(channeltypes.CLOSED)
err := path.EndpointA.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)
},
false,
Expand Down
4 changes: 2 additions & 2 deletions modules/apps/27-interchain-accounts/host/ibc_module_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -808,9 +808,9 @@ func (suite *InterchainAccountsTestSuite) TestControlAccountAfterChannelClose()
suite.assertBalance(icaAddr, expBalAfterFirstSend)

// close the channel
err = path.EndpointA.SetChannelState(channeltypes.CLOSED)
err = path.EndpointA.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)
err = path.EndpointB.SetChannelState(channeltypes.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)

// open a new channel on the same port
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ func (suite *KeeperTestSuite) openAndCloseChannel(path *ibctesting.Path) {
err = path.EndpointB.ChanOpenConfirm()
suite.Require().NoError(err)

err = path.EndpointA.SetChannelState(channeltypes.CLOSED)
err = path.EndpointA.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)

err = path.EndpointB.SetChannelState(channeltypes.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)

path.EndpointA.ChannelID = ""
Expand Down
12 changes: 6 additions & 6 deletions modules/core/04-channel/keeper/handshake_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ func (suite *KeeperTestSuite) TestChanCloseInit() {
channelCap = suite.chainA.GetChannelCapability(path.EndpointA.ChannelConfig.PortID, path.EndpointA.ChannelID)

// close channel
err := path.EndpointA.SetChannelState(types.CLOSED)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
}, false},
{"connection not found", func() {
Expand Down Expand Up @@ -730,7 +730,7 @@ func (suite *KeeperTestSuite) TestChanCloseConfirm() {
path.Setup()
channelCap = suite.chainB.GetChannelCapability(path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID)

err := path.EndpointA.SetChannelState(types.CLOSED)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
}, true},
{"channel doesn't exist", func() {
Expand All @@ -746,7 +746,7 @@ func (suite *KeeperTestSuite) TestChanCloseConfirm() {
path.Setup()
channelCap = suite.chainB.GetChannelCapability(path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID)

err := path.EndpointB.SetChannelState(types.CLOSED)
err := path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
}, false},
{"connection not found", func() {
Expand Down Expand Up @@ -777,7 +777,7 @@ func (suite *KeeperTestSuite) TestChanCloseConfirm() {
path.Setup()
channelCap = suite.chainB.GetChannelCapability(path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID)

err := path.EndpointA.SetChannelState(types.CLOSED)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)

heightDiff = 3
Expand All @@ -791,7 +791,7 @@ func (suite *KeeperTestSuite) TestChanCloseConfirm() {
path.Setup()
channelCap = suite.chainB.GetChannelCapability(path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID)

err := path.EndpointA.SetChannelState(types.CLOSED)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)

channelCap = capabilitytypes.NewCapability(3)
Expand All @@ -807,7 +807,7 @@ func (suite *KeeperTestSuite) TestChanCloseConfirm() {
err := path.EndpointB.ChanUpgradeInit()
suite.Require().NoError(err)

err = path.EndpointA.SetChannelState(types.CLOSED)
err = path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)

channelCap = capabilitytypes.NewCapability(3)
Expand Down
16 changes: 8 additions & 8 deletions modules/core/04-channel/keeper/packet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,21 +101,21 @@ func (suite *KeeperTestSuite) TestSendPacket() {
path.Setup()
sourceChannel = path.EndpointA.ChannelID

err := path.EndpointA.SetChannelState(types.CLOSED)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
}, false},
{"channel is in INIT state", func() {
path.Setup()
sourceChannel = path.EndpointA.ChannelID

err := path.EndpointA.SetChannelState(types.INIT)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.INIT })
suite.Require().NoError(err)
}, false},
{"channel is in TRYOPEN stage", func() {
path.Setup()
sourceChannel = path.EndpointA.ChannelID

err := path.EndpointA.SetChannelState(types.TRYOPEN)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.TRYOPEN })
suite.Require().NoError(err)
}, false},
{"connection not found", func() {
Expand Down Expand Up @@ -492,7 +492,7 @@ func (suite *KeeperTestSuite) TestRecvPacket() {
path.Setup()
packet = types.NewPacket(ibctesting.MockPacketData, 1, path.EndpointA.ChannelConfig.PortID, path.EndpointA.ChannelID, path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID, defaultTimeoutHeight, disabledTimeoutTimestamp)

err := path.EndpointB.SetChannelState(types.CLOSED)
err := path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
channelCap = suite.chainB.GetChannelCapability(path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID)
},
Expand Down Expand Up @@ -726,7 +726,7 @@ func (suite *KeeperTestSuite) TestWriteAcknowledgement() {
packet = types.NewPacket(ibctesting.MockPacketData, 1, path.EndpointA.ChannelConfig.PortID, path.EndpointA.ChannelID, path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID, defaultTimeoutHeight, disabledTimeoutTimestamp)
ack = ibcmock.MockAcknowledgement

err := path.EndpointB.SetChannelState(types.FLUSHING)
err := path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.FLUSHING })
suite.Require().NoError(err)
channelCap = suite.chainB.GetChannelCapability(path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID)
},
Expand All @@ -739,7 +739,7 @@ func (suite *KeeperTestSuite) TestWriteAcknowledgement() {
packet = types.NewPacket(ibctesting.MockPacketData, 1, path.EndpointA.ChannelConfig.PortID, path.EndpointA.ChannelID, path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID, defaultTimeoutHeight, disabledTimeoutTimestamp)
ack = ibcmock.MockAcknowledgement

err := path.EndpointB.SetChannelState(types.FLUSHCOMPLETE)
err := path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.FLUSHCOMPLETE })
suite.Require().NoError(err)
channelCap = suite.chainB.GetChannelCapability(path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID)
},
Expand All @@ -757,7 +757,7 @@ func (suite *KeeperTestSuite) TestWriteAcknowledgement() {
packet = types.NewPacket(ibctesting.MockPacketData, 1, path.EndpointA.ChannelConfig.PortID, path.EndpointA.ChannelID, path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID, defaultTimeoutHeight, disabledTimeoutTimestamp)
ack = ibcmock.MockAcknowledgement

err := path.EndpointB.SetChannelState(types.CLOSED)
err := path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
channelCap = suite.chainB.GetChannelCapability(path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID)
}, false},
Expand Down Expand Up @@ -1109,7 +1109,7 @@ func (suite *KeeperTestSuite) TestAcknowledgePacket() {

packet = types.NewPacket(ibctesting.MockPacketData, sequence, path.EndpointA.ChannelConfig.PortID, path.EndpointA.ChannelID, path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID, defaultTimeoutHeight, disabledTimeoutTimestamp)

err = path.EndpointA.SetChannelState(types.CLOSED)
err = path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
channelCap = suite.chainA.GetChannelCapability(path.EndpointA.ChannelConfig.PortID, path.EndpointA.ChannelID)
},
Expand Down
14 changes: 7 additions & 7 deletions modules/core/04-channel/keeper/timeout_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ func (suite *KeeperTestSuite) TestTimeoutOnClose() {

sequence, err := path.EndpointA.SendPacket(timeoutHeight, timeoutTimestamp, ibctesting.MockPacketData)
suite.Require().NoError(err)
err = path.EndpointB.SetChannelState(types.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
// need to update chainA's client representing chainB to prove missing ack
err = path.EndpointA.UpdateClient()
Expand All @@ -579,7 +579,7 @@ func (suite *KeeperTestSuite) TestTimeoutOnClose() {

sequence, err := path.EndpointA.SendPacket(timeoutHeight, disabledTimeoutTimestamp, ibctesting.MockPacketData)
suite.Require().NoError(err)
err = path.EndpointB.SetChannelState(types.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
// need to update chainA's client representing chainB to prove missing ack
err = path.EndpointA.UpdateClient()
Expand Down Expand Up @@ -636,7 +636,7 @@ func (suite *KeeperTestSuite) TestTimeoutOnClose() {

sequence, err := path.EndpointA.SendPacket(timeoutHeight, timeoutTimestamp, ibctesting.MockPacketData)
suite.Require().NoError(err)
err = path.EndpointB.SetChannelState(types.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
// need to update chainA's client representing chainB to prove missing ack
err = path.EndpointA.UpdateClient()
Expand Down Expand Up @@ -669,7 +669,7 @@ func (suite *KeeperTestSuite) TestTimeoutOnClose() {

sequence, err := path.EndpointA.SendPacket(timeoutHeight, timeoutTimestamp, ibctesting.MockPacketData)
suite.Require().NoError(err)
err = path.EndpointB.SetChannelState(types.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
err = path.EndpointA.UpdateClient()
suite.Require().NoError(err)
Expand All @@ -686,7 +686,7 @@ func (suite *KeeperTestSuite) TestTimeoutOnClose() {

sequence, err := path.EndpointA.SendPacket(timeoutHeight, disabledTimeoutTimestamp, ibctesting.MockPacketData)
suite.Require().NoError(err)
err = path.EndpointB.SetChannelState(types.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
err = path.EndpointA.UpdateClient()
suite.Require().NoError(err)
Expand All @@ -704,7 +704,7 @@ func (suite *KeeperTestSuite) TestTimeoutOnClose() {

sequence, err := path.EndpointA.SendPacket(timeoutHeight, timeoutTimestamp, ibctesting.MockPacketData)
suite.Require().NoError(err)
err = path.EndpointB.SetChannelState(types.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
// need to update chainA's client representing chainB to prove missing ack
err = path.EndpointA.UpdateClient()
Expand All @@ -729,7 +729,7 @@ func (suite *KeeperTestSuite) TestTimeoutOnClose() {
err = path.EndpointB.ChanUpgradeInit()
suite.Require().NoError(err)

err = path.EndpointB.SetChannelState(types.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)

// need to update chainA's client representing chainB to prove missing ack
Expand Down
16 changes: 8 additions & 8 deletions modules/core/04-channel/keeper/upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (suite *KeeperTestSuite) TestChanUpgradeInit() {
{
"channel state is not in OPEN state",
func() {
suite.Require().NoError(path.EndpointA.SetChannelState(types.CLOSED))
suite.Require().NoError(path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED }))
},
false,
},
Expand Down Expand Up @@ -167,7 +167,7 @@ func (suite *KeeperTestSuite) TestChanUpgradeTry() {
{
"channel state is not in OPEN state",
func() {
suite.Require().NoError(path.EndpointB.SetChannelState(types.CLOSED))
suite.Require().NoError(path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED }))
},
types.ErrInvalidChannelState,
},
Expand Down Expand Up @@ -658,7 +658,7 @@ func (suite *KeeperTestSuite) TestChanUpgradeAck() {
{
"channel state is not in FLUSHING state",
func() {
suite.Require().NoError(path.EndpointA.SetChannelState(types.CLOSED))
suite.Require().NoError(path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED }))
},
types.ErrInvalidChannelState,
},
Expand Down Expand Up @@ -948,7 +948,7 @@ func (suite *KeeperTestSuite) TestChanUpgradeConfirm() {
{
"channel is not in FLUSHING state",
func() {
err := path.EndpointB.SetChannelState(types.CLOSED)
err := path.EndpointB.UpdateChannel(func(channel *types.Channel) { channel.State = types.CLOSED })
suite.Require().NoError(err)
},
types.ErrInvalidChannelState,
Expand Down Expand Up @@ -1605,7 +1605,7 @@ func (suite *KeeperTestSuite) TestChanUpgradeCancel() {
{
name: "success with flush complete state",
malleate: func() {
err := path.EndpointA.SetChannelState(types.FLUSHCOMPLETE)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.FLUSHCOMPLETE })
suite.Require().NoError(err)

var ok bool
Expand All @@ -1629,7 +1629,7 @@ func (suite *KeeperTestSuite) TestChanUpgradeCancel() {
{
name: "upgrade cannot be cancelled in FLUSHCOMPLETE with invalid error receipt",
malleate: func() {
err := path.EndpointA.SetChannelState(types.FLUSHCOMPLETE)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.FLUSHCOMPLETE })
suite.Require().NoError(err)

errorReceiptProof = nil
Expand Down Expand Up @@ -1673,7 +1673,7 @@ func (suite *KeeperTestSuite) TestChanUpgradeCancel() {
{
name: "error receipt sequence greater than channel upgrade sequence when channel in FLUSHCOMPLETE",
malleate: func() {
err := path.EndpointA.SetChannelState(types.FLUSHCOMPLETE)
err := path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.FLUSHCOMPLETE })
suite.Require().NoError(err)
},
expError: types.ErrInvalidUpgradeSequence,
Expand Down Expand Up @@ -2000,7 +2000,7 @@ func (suite *KeeperTestSuite) TestChanUpgradeTimeout() {
{
"channel state is not in FLUSHING or FLUSHINGCOMPLETE state",
func() {
suite.Require().NoError(path.EndpointA.SetChannelState(types.OPEN))
suite.Require().NoError(path.EndpointA.UpdateChannel(func(channel *types.Channel) { channel.State = types.OPEN }))
},
types.ErrInvalidChannelState,
},
Expand Down
2 changes: 1 addition & 1 deletion modules/core/ante/ante_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func (suite *AnteTestSuite) createTimeoutOnCloseMessage(isRedundant bool) sdk.Ms

sequence, err := suite.path.EndpointB.SendPacket(timeoutHeight, 0, ibctesting.MockPacketData)
suite.Require().NoError(err)
err = suite.path.EndpointA.SetChannelState(channeltypes.CLOSED)
err = suite.path.EndpointA.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)

packet := channeltypes.NewPacket(ibctesting.MockPacketData, sequence,
Expand Down
14 changes: 8 additions & 6 deletions modules/core/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ func (suite *KeeperTestSuite) TestHandleTimeoutOnClosePacket() {
packetKey = host.NextSequenceRecvKey(packet.GetDestPort(), packet.GetDestChannel())

// close counterparty channel
err = path.EndpointB.SetChannelState(channeltypes.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)
}, true},
{"success: UNORDERED", func() {
Expand All @@ -664,7 +664,7 @@ func (suite *KeeperTestSuite) TestHandleTimeoutOnClosePacket() {
packetKey = host.PacketReceiptKey(packet.GetDestPort(), packet.GetDestChannel(), packet.GetSequence())

// close counterparty channel
err = path.EndpointB.SetChannelState(channeltypes.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)
}, true},
{"success: UNORDERED timeout out of order packet", func() {
Expand All @@ -687,7 +687,7 @@ func (suite *KeeperTestSuite) TestHandleTimeoutOnClosePacket() {
packetKey = host.PacketReceiptKey(packet.GetDestPort(), packet.GetDestChannel(), packet.GetSequence())

// close counterparty channel
err = path.EndpointB.SetChannelState(channeltypes.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)
}, true},
{"success: ORDERED timeout out of order packet", func() {
Expand All @@ -710,7 +710,7 @@ func (suite *KeeperTestSuite) TestHandleTimeoutOnClosePacket() {
packetKey = host.NextSequenceRecvKey(packet.GetDestPort(), packet.GetDestChannel())

// close counterparty channel
err = path.EndpointB.SetChannelState(channeltypes.CLOSED)
err = path.EndpointB.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)
}, true},
{"channel does not exist", func() {
Expand All @@ -725,7 +725,7 @@ func (suite *KeeperTestSuite) TestHandleTimeoutOnClosePacket() {
packetKey = host.PacketAcknowledgementKey(packet.GetDestPort(), packet.GetDestChannel(), packet.GetSequence())

// close counterparty channel
err := path.EndpointB.SetChannelState(channeltypes.CLOSED)
err := path.EndpointB.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.CLOSED })
suite.Require().NoError(err)
}, true},
{"ORDERED: channel not closed", func() {
Expand Down Expand Up @@ -2306,7 +2306,9 @@ func (suite *KeeperTestSuite) TestChannelUpgradeCancel() {
func() {
msg.Signer = suite.chainA.App.GetIBCKeeper().GetAuthority()

suite.Require().NoError(path.EndpointA.SetChannelState(channeltypes.FLUSHCOMPLETE))
suite.Require().NoError(
path.EndpointA.UpdateChannel(func(channel *channeltypes.Channel) { channel.State = channeltypes.FLUSHCOMPLETE }),
)
},
func(res *channeltypes.MsgChannelUpgradeCancelResponse, events []abci.Event, err error) {
suite.Require().Error(err)
Expand Down
Loading
Loading