mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 22:32:15 +00:00
* split immutable and mutable parts of priv_validator.json * fix bugs * minor changes * retrig test * delete scripts/wire2amino.go * fix test * fixes from review * privval: remove mtx * rearrange priv_validator.go * upgrade path * write tests for the upgrade * fix for unsafe_reset_all * add test * add reset test
28 lines
503 B
Go
28 lines
503 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/tendermint/tendermint/privval"
|
|
)
|
|
|
|
// GenValidatorCmd allows the generation of a keypair for a
|
|
// validator.
|
|
var GenValidatorCmd = &cobra.Command{
|
|
Use: "gen_validator",
|
|
Short: "Generate new validator keypair",
|
|
Run: genValidator,
|
|
}
|
|
|
|
func genValidator(cmd *cobra.Command, args []string) {
|
|
pv := privval.GenFilePV("", "")
|
|
jsbz, err := cdc.MarshalJSON(pv)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Printf(`%v
|
|
`, string(jsbz))
|
|
}
|