Skip to content

Commit

Permalink
Add a new option: halt-height (#63)
Browse files Browse the repository at this point in the history
Use the cosmos: v0.35.7-internal
  • Loading branch information
Youngjoon Lee authored Oct 14, 2020
1 parent 392991b commit 78afd5e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions cmd/panacead/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ func newApp(logger log.Logger, db dbm.DB, traceStore io.Writer) abci.Application
logger, db, traceStore, true, invCheckPeriod,
baseapp.SetPruning(store.NewPruningOptionsFromString(viper.GetString("pruning"))),
baseapp.SetMinGasPrices(viper.GetString(server.FlagMinGasPrices)),
baseapp.SetHaltHeight(uint64(viper.GetInt(server.FlagHaltHeight))),
)
}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ require (
gopkg.in/yaml.v2 v2.2.7 // indirect
)

replace github.com/cosmos/cosmos-sdk => github.com/medibloc/cosmos-sdk v0.35.6-internal
replace github.com/cosmos/cosmos-sdk => github.com/medibloc/cosmos-sdk v0.35.7-internal
4 changes: 4 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,10 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0j
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
github.com/medibloc/cosmos-sdk v0.35.6-internal h1:CD4OgHu6Yq+mXror7MNZs3j2F3aAMD1KAqFxdUNfgd0=
github.com/medibloc/cosmos-sdk v0.35.6-internal/go.mod h1:o1VYnwY1YmUwQhLr5H7bM8o36Fnc+kwKglyrilIyzqc=
github.com/medibloc/cosmos-sdk v0.35.6-internal.0.20201005064440-b291387e4dc7 h1:qyY4tmZ6PsaroMW8ta7UKDbHjhE9KpsCcTwVlSjFQY0=
github.com/medibloc/cosmos-sdk v0.35.6-internal.0.20201005064440-b291387e4dc7/go.mod h1:o1VYnwY1YmUwQhLr5H7bM8o36Fnc+kwKglyrilIyzqc=
github.com/medibloc/cosmos-sdk v0.35.7-internal h1:23RrDF9lom/keNkdxYjV5nnvtpLndpxnrhDWRCZVKAQ=
github.com/medibloc/cosmos-sdk v0.35.7-internal/go.mod h1:o1VYnwY1YmUwQhLr5H7bM8o36Fnc+kwKglyrilIyzqc=
github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
github.com/mitchellh/go-ps v0.0.0-20190716172923-621e5597135b/go.mod h1:r1VsdOzOPt1ZSrGZWFoNhsAedKnEd6r9Np1+5blZCWk=
Expand Down

0 comments on commit 78afd5e

Please sign in to comment.