Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Cosmos SDK to v0.37.15 #58

Merged
merged 4 commits into from
Oct 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitbook/guide/deploy-a-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ panaceacli keys add validator
panacead add-genesis-account $(panaceacli keys show validator -a) 100000000000000umed

# Generate the transaction that creates your validator
panacead gentx --name validator
panacead gentx --name validator --amount 1000000000000umed --commission-rate 0.1 --commission-max-rate 0.2 --commission-max-change-rate 0.01 --min-self-delegation 1000000

# Add the generated bonding transaction to the genesis file
panacead collect-gentxs
Expand Down
13 changes: 6 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ build_tags += ledger

# process linker flags

ldflags = -X github.com/medibloc/panacea-core/version.Version=$(VERSION) \
-X github.com/medibloc/panacea-core/version.Commit=$(COMMIT) \
-X "github.com/medibloc/panacea-core/version.BuildTags=$(build_tags)"

ifneq ($(GOSUM),)
ldflags += -X github.com/medibloc/panacea-core/version.GoSumHash=$(shell $(GOSUM) go.sum)
endif
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=panacea-core \
-X github.com/cosmos/cosmos-sdk/version.ServerName=panacead \
-X github.com/cosmos/cosmos-sdk/version.ClientName=panaceacli \
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \
-X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags)"

ldflags += $(LDFLAGS)
ldflags := $(strip $(ldflags))
Expand Down
Loading