Commit c342cfb1 authored by mdj33's avatar mdj33 Committed by 33cn

code refactor to autonomy

parent 7d217121
...@@ -32,7 +32,6 @@ func addProposalItemFlags(cmd *cobra.Command) { ...@@ -32,7 +32,6 @@ func addProposalItemFlags(cmd *cobra.Command) {
cmd.Flags().StringP("itemTxHash", "i", "", "the tx to apply check") cmd.Flags().StringP("itemTxHash", "i", "", "the tx to apply check")
cmd.MarkFlagRequired("itemTxHash") cmd.MarkFlagRequired("itemTxHash")
cmd.Flags().StringP("exec", "x", "", "last stage proposal ID")
cmd.Flags().StringP("description", "p", "", "description item") cmd.Flags().StringP("description", "p", "", "description item")
cmd.Flags().Int64P("startBlock", "s", 0, "start block height") cmd.Flags().Int64P("startBlock", "s", 0, "start block height")
...@@ -50,7 +49,6 @@ func proposalItem(cmd *cobra.Command, args []string) { ...@@ -50,7 +49,6 @@ func proposalItem(cmd *cobra.Command, args []string) {
day, _ := cmd.Flags().GetInt32("day") day, _ := cmd.Flags().GetInt32("day")
txHash, _ := cmd.Flags().GetString("itemTxHash") txHash, _ := cmd.Flags().GetString("itemTxHash")
exec, _ := cmd.Flags().GetString("exec")
description, _ := cmd.Flags().GetString("description") description, _ := cmd.Flags().GetString("description")
startBlock, _ := cmd.Flags().GetInt64("startBlock") startBlock, _ := cmd.Flags().GetInt64("startBlock")
...@@ -61,7 +59,6 @@ func proposalItem(cmd *cobra.Command, args []string) { ...@@ -61,7 +59,6 @@ func proposalItem(cmd *cobra.Command, args []string) {
Month: month, Month: month,
Day: day, Day: day,
ItemTxHash: txHash, ItemTxHash: txHash,
Exec: exec,
Description: description, Description: description,
StartBlockHeight: startBlock, StartBlockHeight: startBlock,
EndBlockHeight: endBlock, EndBlockHeight: endBlock,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment