Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Satchitananda committed Nov 12, 2023
1 parent 9c815a0 commit 97d45ba
Show file tree
Hide file tree
Showing 175 changed files with 968 additions and 48,057 deletions.
9 changes: 5 additions & 4 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ import (
"github.com/cosmos/cosmos-sdk/x/auth"
"github.com/cosmos/cosmos-sdk/x/auth/ante"

distr "github.com/ODIN-PROTOCOL/odin-core/x/distribution"
distrclient "github.com/ODIN-PROTOCOL/odin-core/x/distribution/client"
distrkeeper "github.com/ODIN-PROTOCOL/odin-core/x/distribution/keeper"
distrtypes "github.com/ODIN-PROTOCOL/odin-core/x/distribution/types"
distr "github.com/cosmos/cosmos-sdk/x/distribution"

distrclient "github.com/cosmos/cosmos-sdk/x/distribution/client/cli"
distrkeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper"
distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types"

authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
authsims "github.com/cosmos/cosmos-sdk/x/auth/simulation"
Expand Down
2 changes: 1 addition & 1 deletion app/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
ibc "github.com/cosmos/ibc-go/v7/modules/core"
ibchost "github.com/cosmos/ibc-go/v7/modules/core/24-host"

distrtypes "x/distribution/types"
distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types"

sdk "github.com/cosmos/cosmos-sdk/types"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
Expand Down
6 changes: 2 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ require (
github.com/CosmWasm/wasmd v0.44.0
github.com/Masterminds/squirrel v1.5.2
github.com/cometbft/cometbft v0.38.0

// github.com/tendermint/tendermint v0.34.27
github.com/cometbft/cometbft-db v0.8.0
github.com/confio/ics23/go v0.9.0
github.com/cosmos/cosmos-sdk v0.47.5
Expand Down Expand Up @@ -223,9 +221,9 @@ require (
)

replace (
github.com/ODIN-PROTOCOL/odin-core => github.com/ODIN-PROTOCOL/odin-core/tree/v047-dep-update v0.7.1
github.com/ODIN-PROTOCOL/odin-core => github.com/ODIN-PROTOCOL/odin-core/tree/v047-dep-update v0.7.2
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
github.com/tendermint/tendermint => github.com/cometbft/cometbft v0.34.27
github.com/tendermint/tendermint => github.com/cometbft/cometbft v0.37.2
google.golang.org/grpc => google.golang.org/grpc v1.59.0
)
46 changes: 26 additions & 20 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion hooks/emitter/distribution.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package emitter

import (
"x/distribution/types"
"github.com/cosmos/cosmos-sdk/x/distribution/types"

sdk "github.com/cosmos/cosmos-sdk/types"

Expand Down
2 changes: 1 addition & 1 deletion hooks/emitter/emitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
tmjson "github.com/cometbft/cometbft/libs/json"
"github.com/segmentio/kafka-go"

distrkeeper "x/distribution/keeper"
distrkeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper"

"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
2 changes: 1 addition & 1 deletion hooks/emitter/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
abci "github.com/cometbft/cometbft/abci/types"
channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"

distrtypes "x/distribution/types"
distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types"

sdk "github.com/cosmos/cosmos-sdk/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
Expand Down
Loading

0 comments on commit 97d45ba

Please sign in to comment.