more MarshalJSONIndent

This commit is contained in:
Ethan Buchman
2018-04-09 23:18:56 +03:00
parent 9e2667b496
commit f5c285f5ee
3 changed files with 5 additions and 16 deletions
+1 -2
View File
@@ -2,7 +2,6 @@ package commands
import (
"encoding/hex"
"encoding/json"
"fmt"
"github.com/pkg/errors"
@@ -77,7 +76,7 @@ func (c commander) getAccountCmd(cmd *cobra.Command, args []string) error {
}
// print out whole account
output, err := json.MarshalIndent(account, "", " ")
output, err := wire.MarshalJSONIndent(c.cdc, account)
if err != nil {
return err
}
+4 -5
View File
@@ -2,7 +2,6 @@ package commands
import (
"encoding/hex"
"encoding/json"
"fmt"
"github.com/spf13/cobra"
@@ -59,7 +58,7 @@ func GetCmdQueryCandidates(cdc *wire.Codec, storeName string) *cobra.Command {
if err != nil {
return err
}
output, err := json.MarshalIndent(candidates, "", " ")
output, err := wire.MarshalJSONIndent(cdc, candidates)
if err != nil {
return err
}
@@ -101,7 +100,7 @@ func GetCmdQueryCandidate(cdc *wire.Codec, storeName string) *cobra.Command {
if err != nil {
return err
}
output, err := json.MarshalIndent(candidate, "", " ")
output, err := wire.MarshalJSONIndent(cdc, candidate)
if err != nil {
return err
}
@@ -149,7 +148,7 @@ func GetCmdQueryDelegatorBond(cdc *wire.Codec, storeName string) *cobra.Command
if err != nil {
return err
}
output, err := json.MarshalIndent(bond, "", " ")
output, err := wire.MarshalJSONIndent(cdc, bond)
if err != nil {
return err
}
@@ -193,7 +192,7 @@ func GetCmdQueryDelegatorBonds(cdc *wire.Codec, storeName string) *cobra.Command
if err != nil {
return err
}
output, err := json.MarshalIndent(candidates, "", " ")
output, err := wire.MarshalJSONIndent(cdc, candidates)
if err != nil {
return err
}