mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-01 01:32:13 +00:00
71 lines
1.7 KiB
Go
71 lines
1.7 KiB
Go
package commands
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
cfg "github.com/tendermint/tendermint/config"
|
|
"github.com/tendermint/tendermint/p2p"
|
|
"github.com/tendermint/tendermint/types"
|
|
pvm "github.com/tendermint/tendermint/types/priv_validator"
|
|
cmn "github.com/tendermint/tmlibs/common"
|
|
)
|
|
|
|
// InitFilesCmd initialises a fresh Tendermint Core instance.
|
|
var InitFilesCmd = &cobra.Command{
|
|
Use: "init",
|
|
Short: "Initialize Tendermint",
|
|
RunE: initFiles,
|
|
}
|
|
|
|
func initFiles(cmd *cobra.Command, args []string) error {
|
|
return initFilesWithConfig(config)
|
|
}
|
|
|
|
func initFilesWithConfig(config *cfg.Config) error {
|
|
// private validator
|
|
privValFile := config.PrivValidatorFile()
|
|
var pv *pvm.FilePV
|
|
if cmn.FileExists(privValFile) {
|
|
pv = pvm.LoadFilePV(privValFile)
|
|
logger.Info("Found private validator", "path", privValFile)
|
|
} else {
|
|
pv = pvm.GenFilePV(privValFile)
|
|
pv.Save()
|
|
logger.Info("Generated private validator", "path", privValFile)
|
|
}
|
|
|
|
nodeKeyFile := config.NodeKeyFile()
|
|
if cmn.FileExists(nodeKeyFile) {
|
|
logger.Info("Found node key", "path", nodeKeyFile)
|
|
} else {
|
|
if _, err := p2p.LoadOrGenNodeKey(nodeKeyFile); err != nil {
|
|
return err
|
|
}
|
|
logger.Info("Generated node key", "path", nodeKeyFile)
|
|
}
|
|
|
|
// genesis file
|
|
genFile := config.GenesisFile()
|
|
if cmn.FileExists(genFile) {
|
|
logger.Info("Found genesis file", "path", genFile)
|
|
} else {
|
|
genDoc := types.GenesisDoc{
|
|
ChainID: cmn.Fmt("test-chain-%v", cmn.RandStr(6)),
|
|
GenesisTime: time.Now(),
|
|
}
|
|
genDoc.Validators = []types.GenesisValidator{{
|
|
PubKey: pv.GetPubKey(),
|
|
Power: 10,
|
|
}}
|
|
|
|
if err := genDoc.SaveAs(genFile); err != nil {
|
|
return err
|
|
}
|
|
logger.Info("Generated genesis file", "path", genFile)
|
|
}
|
|
|
|
return nil
|
|
}
|