Skip to content

Commit

Permalink
changed from seconds to hours
Browse files Browse the repository at this point in the history
  • Loading branch information
czarcas7ic committed Feb 13, 2022
1 parent b2de76c commit 01b53ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/lockup/client/cli/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ const (
func FlagSetLockTokens() *flag.FlagSet {
fs := flag.NewFlagSet("", flag.ContinueOnError)

fs.String(FlagDuration, "86400s", "The duration token to be locked. e.g. 86400s, 604800s, 1209600s")
fs.String(FlagDuration, "24h", "The duration token to be locked. e.g. 24h, 168h, 336h")
return fs
}

func FlagSetMinDuration() *flag.FlagSet {
fs := flag.NewFlagSet("", flag.ContinueOnError)

fs.String(FlagMinDuration, "86400s", "The minimum duration of token bonded. e.g. 86400s, 604800s, 1209600s")
fs.String(FlagMinDuration, "336h", "The minimum duration of token bonded. e.g. 24h, 168h, 336h")
return fs
}

0 comments on commit 01b53ef

Please sign in to comment.