Skip to content

Commit

Permalink
deps: using correct core and telemethy version
Browse files Browse the repository at this point in the history
  • Loading branch information
kienn6034 committed Mar 28, 2024
1 parent 50d86ff commit 983f896
Show file tree
Hide file tree
Showing 3 changed files with 720 additions and 235 deletions.
2 changes: 1 addition & 1 deletion app/keepers/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ func (appKeepers *AppKeepers) InitSpecialKeepers(
appKeepers.CapabilityKeeper = capabilitykeeper.NewKeeper(appCodec, appKeepers.keys[capabilitytypes.StoreKey], appKeepers.memKeys[capabilitytypes.MemStoreKey])

// set the BaseApp's parameter store
appKeepers.ConsensusParamsKeeper = consensusparamkeeper.NewKeeper(appCodec, runtime.NewKVStoreService(appKeepers.keys[consensusparamtypes.StoreKey]), govModAddress, runtime.ProvideCometInfoService())
appKeepers.ConsensusParamsKeeper = consensusparamkeeper.NewKeeper(appCodec, runtime.NewKVStoreService(appKeepers.keys[consensusparamtypes.StoreKey]), govModAddress, runtime.EventService{})
bApp.SetParamStore(&appKeepers.ConsensusParamsKeeper.ParamsStore)

// grant capabilities for the ibc and ibc-transfer modules
Expand Down
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ require (
github.com/CosmWasm/wasmd v0.50.0
github.com/client9/misspell v0.3.4
github.com/cometbft/cometbft v0.38.6
github.com/cometbft/cometbft-db v0.11.0
github.com/cosmos/cosmos-proto v1.0.0-beta.4
github.com/cosmos/cosmos-sdk v0.50.5
github.com/cosmos/gogoproto v1.4.12
Expand All @@ -32,6 +31,8 @@ require (
mvdan.cc/gofumpt v0.4.0
)

require github.com/cometbft/cometbft-db v0.11.0 // indirect

require (
4d63.com/gocheckcompilerdirectives v1.2.1 // indirect
4d63.com/gochecknoglobals v0.2.1 // indirect
Expand Down Expand Up @@ -354,6 +355,7 @@ require (
)

replace (
cosmossdk.io/core => cosmossdk.io/core v0.11.0
// Use the keyring specified by the cosmos-sdk
github.com/99designs/keyring => github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76
// lock wasmvm so we do not break the grandpa contract
Expand All @@ -365,5 +367,9 @@ replace (
// use cosmos-compatible protobufs
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1

github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.18.0

github.com/prometheus/common => github.com/prometheus/common v0.47.0

github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
)
Loading

0 comments on commit 983f896

Please sign in to comment.