Pretty print JSON

This commit is contained in:
Jae Kwon
2016-03-19 16:58:15 -07:00
parent 3f6f149584
commit 9b4b533f2f
4 changed files with 6 additions and 7 deletions
+2 -2
View File
@@ -3,14 +3,14 @@ package main
import (
"fmt"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/go-wire"
"github.com/tendermint/tendermint/types"
)
func gen_validator() {
privValidator := types.GenPrivValidator()
privValidatorJSONBytes := wire.JSONBytes(privValidator)
privValidatorJSONBytes := wire.JSONBytesPretty(privValidator)
fmt.Printf(`Generated a new validator!
Paste the following JSON into your %v file
+2 -3
View File
@@ -1,15 +1,14 @@
package main
import (
"fmt"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/go-wire"
"github.com/tendermint/tendermint/types"
)
func show_validator() {
privValidatorFile := config.GetString("priv_validator_file")
privValidator := types.LoadOrGenPrivValidator(privValidatorFile)
fmt.Println(string(wire.JSONBytes(privValidator.PubKey)))
fmt.Println(string(wire.JSONBytesPretty(privValidator.PubKey)))
}