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

View File

@ -3,14 +3,14 @@ package main
import ( import (
"fmt" "fmt"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/go-wire" "github.com/tendermint/go-wire"
"github.com/tendermint/tendermint/types"
) )
func gen_validator() { func gen_validator() {
privValidator := types.GenPrivValidator() privValidator := types.GenPrivValidator()
privValidatorJSONBytes := wire.JSONBytes(privValidator) privValidatorJSONBytes := wire.JSONBytesPretty(privValidator)
fmt.Printf(`Generated a new validator! fmt.Printf(`Generated a new validator!
Paste the following JSON into your %v file Paste the following JSON into your %v file

View File

@ -1,15 +1,14 @@
package main package main
import ( import (
"fmt" "fmt"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/go-wire" "github.com/tendermint/go-wire"
"github.com/tendermint/tendermint/types"
) )
func show_validator() { func show_validator() {
privValidatorFile := config.GetString("priv_validator_file") privValidatorFile := config.GetString("priv_validator_file")
privValidator := types.LoadOrGenPrivValidator(privValidatorFile) privValidator := types.LoadOrGenPrivValidator(privValidatorFile)
fmt.Println(string(wire.JSONBytes(privValidator.PubKey))) fmt.Println(string(wire.JSONBytesPretty(privValidator.PubKey)))
} }

View File

@ -31,7 +31,7 @@ type GenesisDoc struct {
// Utility method for saving GenensisDoc as JSON file. // Utility method for saving GenensisDoc as JSON file.
func (genDoc *GenesisDoc) SaveAs(file string) error { func (genDoc *GenesisDoc) SaveAs(file string) error {
genDocBytes := wire.JSONBytes(genDoc) genDocBytes := wire.JSONBytesPretty(genDoc)
return WriteFile(file, genDocBytes, 0644) return WriteFile(file, genDocBytes, 0644)
} }

View File

@ -141,7 +141,7 @@ func (privVal *PrivValidator) save() {
if privVal.filePath == "" { if privVal.filePath == "" {
PanicSanity("Cannot save PrivValidator: filePath not set") PanicSanity("Cannot save PrivValidator: filePath not set")
} }
jsonBytes := wire.JSONBytes(privVal) jsonBytes := wire.JSONBytesPretty(privVal)
err := WriteFileAtomic(privVal.filePath, jsonBytes, 0600) err := WriteFileAtomic(privVal.filePath, jsonBytes, 0600)
if err != nil { if err != nil {
// `@; BOOM!!! // `@; BOOM!!!