Merge PR #6765: x/auth: Finish CLI Refactor
This commit is contained in:
@@ -107,11 +107,11 @@ func queryCommand() *cobra.Command {
|
||||
}
|
||||
|
||||
cmd.AddCommand(
|
||||
authcmd.GetAccountCmd(encodingConfig.Amino),
|
||||
rpc.ValidatorCommand(encodingConfig.Amino),
|
||||
authcmd.GetAccountCmd(),
|
||||
rpc.ValidatorCommand(),
|
||||
rpc.BlockCommand(),
|
||||
authcmd.QueryTxsByEventsCmd(encodingConfig.Amino),
|
||||
authcmd.QueryTxCmd(encodingConfig.Amino),
|
||||
authcmd.QueryTxsByEventsCmd(),
|
||||
authcmd.QueryTxCmd(),
|
||||
)
|
||||
|
||||
simapp.ModuleBasics.AddQueryCommands(cmd, initClientCtx)
|
||||
|
||||
@@ -211,7 +211,8 @@ func InitTestnet(
|
||||
if err != nil {
|
||||
return fmt.Errorf("error creating tx: %w", err)
|
||||
}
|
||||
txBldr.WithChainID(chainID).WithMemo(memo).WithKeybase(kb)
|
||||
|
||||
txBldr = txBldr.WithChainID(chainID).WithMemo(memo).WithKeybase(kb)
|
||||
|
||||
signedTx, err := txBldr.SignStdTx(nodeDirName, tx, false)
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user