Browse Source

Merge pull request #1540 from tendermint/set-genesis-time-on-init

set GenesisTime to now during `tendermint init`
pull/1529/head
Ethan Buchman 6 years ago
committed by GitHub
parent
commit
fbe253767e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      cmd/tendermint/commands/init.go

+ 4
- 1
cmd/tendermint/commands/init.go View File

@ -1,6 +1,8 @@
package commands
import (
"time"
"github.com/spf13/cobra"
cfg "github.com/tendermint/tendermint/config"
@ -50,7 +52,8 @@ func initFilesWithConfig(config *cfg.Config) error {
logger.Info("Found genesis file", "path", genFile)
} else {
genDoc := types.GenesisDoc{
ChainID: cmn.Fmt("test-chain-%v", cmn.RandStr(6)),
ChainID: cmn.Fmt("test-chain-%v", cmn.RandStr(6)),
GenesisTime: time.Now(),
}
genDoc.Validators = []types.GenesisValidator{{
PubKey: pv.GetPubKey(),


Loading…
Cancel
Save