Skip to content

Commit e93b2f2

Browse files
committed
upgrade to cosmos v0.47 (updating app)
1 parent 82a4d2d commit e93b2f2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2238
-877
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ endif
1515
PACKAGES_SIMTEST=$(shell go list ./... | grep '/simulation')
1616
LEDGER_ENABLED ?= true
1717
SDK_PACK := $(shell go list -m github.com/cosmos/cosmos-sdk | sed 's/ /\@/g')
18-
TM_VERSION := $(shell go list -m github.com/tendermint/tendermint | sed 's:.* ::') # grab everything after the space in "github.com/tendermint/tendermint v0.34.7"
18+
TM_VERSION := $(shell go list -m github.com/cometbft/cometbft | sed 's:.* ::') # grab everything after the space in "github.com/cometbft/cometbft v0.37.2"
1919
DOCKER := $(shell which docker)
2020
BUILDDIR ?= $(CURDIR)/build
2121

@@ -68,7 +68,7 @@ ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=fairyring \
6868
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \
6969
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \
7070
-X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)" \
71-
-X github.com/tendermint/tendermint/version.TMCoreSemVer=$(TM_VERSION)
71+
-X github.com/cometbft/cometbft/version.TMCoreSemVer=$(TM_VERSION)
7272

7373
ifeq (cleveldb,$(findstring cleveldb,$(FR_BUILD_OPTIONS)))
7474
ldflags += -X github.com/cosmos/cosmos-sdk/types.DBBackend=cleveldb

0 commit comments

Comments
 (0)