From af76adea54d1b5a075d695ed4a3bd226b99e9ac6 Mon Sep 17 00:00:00 2001 From: Jim Fasarakis-Hilliard Date: Wed, 12 Jul 2023 13:35:15 +0300 Subject: [PATCH] Remove manual setting of flush status in ChanUpgradeOpen. (#4064) --- modules/core/04-channel/keeper/upgrade_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/modules/core/04-channel/keeper/upgrade_test.go b/modules/core/04-channel/keeper/upgrade_test.go index 5130f23d45d..6e383fd217d 100644 --- a/modules/core/04-channel/keeper/upgrade_test.go +++ b/modules/core/04-channel/keeper/upgrade_test.go @@ -734,15 +734,6 @@ func (suite *KeeperTestSuite) TestChanUpgradeOpen() { err = path.EndpointB.ChanUpgradeAck() suite.Require().NoError(err) - // TODO: Remove setting of FLUSHCOMPLETE once #3928 is completed - channelB := path.EndpointB.GetChannel() - channelB.FlushStatus = types.FLUSHCOMPLETE - path.EndpointB.SetChannel(channelB) - - channelA := path.EndpointA.GetChannel() - channelA.FlushStatus = types.FLUSHCOMPLETE - path.EndpointA.SetChannel(channelA) - suite.coordinator.CommitBlock(suite.chainA, suite.chainB) suite.Require().NoError(path.EndpointA.UpdateClient())