Skip to content

Commit

Permalink
Add some commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferai committed Feb 14, 2018
1 parent 9aa481d commit 5e27e0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion command/operator_init.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,11 @@ func (c *OperatorInitCommand) Flags() *FlagSets {
Usage: "",
})

// Kept to keep scripts passing the flag working, but not used
f.IntVar(&IntVar{
Name: "stored-shares",
Target: &c.flagStoredShares,
Default: 0, // No default, because we need to check if was supplied
Default: 0,
Hidden: true,
Usage: "",
})
Expand Down
1 change: 1 addition & 0 deletions command/operator_rekey.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ func (c *OperatorRekeyCommand) Flags() *FlagSets {
Usage: "",
})

// Kept to keep scripts passing the flag working, but not used
f.IntVar(&IntVar{
Name: "stored-shares",
Target: &c.flagStoredShares,
Expand Down

0 comments on commit 5e27e0c

Please sign in to comment.