You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the README, I attempt to run the following:
go install -ldflags '-w -s -X github.com/cosmos/cosmos-sdk/types.DBBackend=rocksdb' -tags rocksdb ./...
My response is:
cmd/pruner.go:13:2: no required module provides package github.com/cosmos/cosmos-sdk/x/consensus/types; to add it: go get github.com/cosmos/cosmos-sdk/x/consensus/types
I run that command followed by go mod tidy but get this response:
go: github.com/binaryholdings/cosmos-pruner/internal/rootmulti imports github.com/cosmos/cosmos-sdk/store/cachemulti: github.com/cosmos/cosmos-sdk/[email protected]: parsing go.mod: module declares its path as: cosmossdk.io/store but was required as: github.com/cosmos/cosmos-sdk/store
The module path for store is in conflict.
The text was updated successfully, but these errors were encountered:
Following the README, I attempt to run the following:
go install -ldflags '-w -s -X github.com/cosmos/cosmos-sdk/types.DBBackend=rocksdb' -tags rocksdb ./...
My response is:
cmd/pruner.go:13:2: no required module provides package github.com/cosmos/cosmos-sdk/x/consensus/types; to add it: go get github.com/cosmos/cosmos-sdk/x/consensus/types
I run that command followed by
go mod tidy
but get this response:go: github.com/binaryholdings/cosmos-pruner/internal/rootmulti imports github.com/cosmos/cosmos-sdk/store/cachemulti: github.com/cosmos/cosmos-sdk/[email protected]: parsing go.mod: module declares its path as: cosmossdk.io/store but was required as: github.com/cosmos/cosmos-sdk/store
The module path for
store
is in conflict.The text was updated successfully, but these errors were encountered: