Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 2 additions & 6 deletions modules/core/02-client/types/codec.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
package types

import (
<<<<<<< HEAD
proto "github.com/cosmos/gogoproto/proto"
=======
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/legacy"
"github.com/cosmos/gogoproto/proto"
>>>>>>> de2f70a4 (fix: support amino encoding on MsgRecoverClient (#8448))

errorsmod "cosmossdk.io/errors"

"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/legacy"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/msgservice"
Expand Down
167 changes: 54 additions & 113 deletions modules/core/02-client/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions modules/core/04-channel/keeper/packet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ func (suite *KeeperTestSuite) TestAcknowledgePacket() {
path.EndpointB.Chain.App.GetIBCKeeper().ChannelKeeper.SetPacketAcknowledgement(path.EndpointB.Chain.GetContext(), path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID, sequence, types.CommitAcknowledgement(ack))

path.EndpointB.Chain.NextBlock()
path.EndpointA.UpdateClient()
suite.Require().NoError(path.EndpointA.UpdateClient())
},
expResult: func(commitment []byte, err error) {
suite.Require().Error(err)
Expand All @@ -1130,7 +1130,7 @@ func (suite *KeeperTestSuite) TestAcknowledgePacket() {
path.EndpointB.Chain.App.GetIBCKeeper().ChannelKeeper.SetPacketAcknowledgement(path.EndpointB.Chain.GetContext(), path.EndpointB.ChannelConfig.PortID, path.EndpointB.ChannelID, sequence, types.CommitAcknowledgement(ack))

path.EndpointB.Chain.NextBlock()
path.EndpointA.UpdateClient()
suite.Require().NoError(path.EndpointA.UpdateClient())
},
expResult: func(commitment []byte, err error) {
suite.Require().NoError(err)
Expand Down
Loading