Skip to content

Commit

Permalink
Resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
poorphd committed Jul 24, 2024
1 parent 9e696e8 commit f5ddab1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions x/coinswap/simulation/operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ import (

errorsmod "cosmossdk.io/errors"
sdkmath "cosmossdk.io/math"
"github.com/Canto-Network/Canto/v7/x/coinswap/keeper"
"github.com/Canto-Network/Canto/v7/x/coinswap/types"

"github.com/Canto-Network/Canto/v7/app/params"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/codec"
Expand Down
2 changes: 1 addition & 1 deletion x/erc20/simulation/decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func NewDecodeStore(cdc codec.Codec) func(kvA, kvB kv.Pair) string {
cdc.MustUnmarshal(kvB.Value, &tpB)
return fmt.Sprintf("%v\n%v", tpA, tpB)

case bytes.Equal(kvA.Key[:1], types.KeyPrefixTokenPairByERC20):
case bytes.Equal(kvA.Key[:1], types.KeyPrefixTokenPairByERC20Address):
var tpA, tpB types.TokenPair
cdc.MustUnmarshal(kvA.Value, &tpA)
cdc.MustUnmarshal(kvB.Value, &tpB)
Expand Down
1 change: 0 additions & 1 deletion x/govshuttle/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ func (am AppModule) Name() string {
func (am AppModule) RegisterServices(cfg module.Configurator) {
types.RegisterMsgServer(cfg.MsgServer(), keeper.NewMsgServerImpl(am.keeper))
types.RegisterQueryServer(cfg.QueryServer(), am.keeper)
types.RegisterMsgServer(cfg.MsgServer(), am.keeper)
}

// RegisterInvariants registers the capability module's invariants.
Expand Down

0 comments on commit f5ddab1

Please sign in to comment.