Skip to content

Commit

Permalink
Upgrade Cosmos SDK to v0.37.15 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
Youngjoon Lee authored Oct 15, 2020
1 parent 6a7013c commit dfbaa62
Show file tree
Hide file tree
Showing 65 changed files with 1,347 additions and 2,836 deletions.
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

0 comments on commit dfbaa62

Please sign in to comment.