* Update genutil collect and gentx to use TxGenerator * Remove print statement * Use Tx in genutil DeliverGenTxs * Use Tx in genutil genesis_state * Use Tx in ValidateGenesis * Use amino txJSONDecoder and txBinaryEncoder in genutil InitGenesis * Use TxConfig in place of TxGenerator * Add gentx tests * Remove commented line * Test fixes * Apply suggestions from code review Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com> * Fixes * Fixes * Fixes * Fixes * Remove unneeded test case (doesn't apply to proto marshaling) * linting * Refactor to use new TxEncodingConfig interface in genutil module * Replace golang/protobuf with gogo/protobuf package * Use TxEncodingConfig in InitTestnet * Remove old amino.go file * Use TxJSONDecoder in genutil ValidateGenesis * Add parameter to ValidateGenesis to resolve the tx JSON decoder issue * Address review feedback Co-authored-by: Jack Zampolin <jack.zampolin@gmail.com> Co-authored-by: Aaron Craelius <aaronc@users.noreply.github.com> Co-authored-by: Aaron Craelius <aaron@regen.network> Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
57 lines
1.7 KiB
Go
57 lines
1.7 KiB
Go
package cli
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/server"
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
)
|
|
|
|
// Validate genesis command takes
|
|
func ValidateGenesisCmd(mbm module.BasicManager, txEncCfg client.TxEncodingConfig) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "validate-genesis [file]",
|
|
Args: cobra.RangeArgs(0, 1),
|
|
Short: "validates the genesis file at the default location or at the location passed as an arg",
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
serverCtx := server.GetServerContextFromCmd(cmd)
|
|
clientCtx := client.GetClientContextFromCmd(cmd)
|
|
|
|
cdc := clientCtx.JSONMarshaler
|
|
|
|
// Load default if passed no args, otherwise load passed file
|
|
var genesis string
|
|
if len(args) == 0 {
|
|
genesis = serverCtx.Config.GenesisFile()
|
|
} else {
|
|
genesis = args[0]
|
|
}
|
|
|
|
fmt.Fprintf(os.Stderr, "validating genesis file at %s\n", genesis)
|
|
|
|
var genDoc *tmtypes.GenesisDoc
|
|
if genDoc, err = tmtypes.GenesisDocFromFile(genesis); err != nil {
|
|
return fmt.Errorf("error loading genesis doc from %s: %s", genesis, err.Error())
|
|
}
|
|
|
|
var genState map[string]json.RawMessage
|
|
if err = cdc.UnmarshalJSON(genDoc.AppState, &genState); err != nil {
|
|
return fmt.Errorf("error unmarshalling genesis doc %s: %s", genesis, err.Error())
|
|
}
|
|
|
|
if err = mbm.ValidateGenesis(cdc, txEncCfg, genState); err != nil {
|
|
return fmt.Errorf("error validating genesis file %s: %s", genesis, err.Error())
|
|
}
|
|
|
|
fmt.Printf("File at %s is a valid genesis file\n", genesis)
|
|
return nil
|
|
},
|
|
}
|
|
}
|