github.com/gravity-devs/liquidity@v1.5.3/x/liquidity/client/cli/flags.go (about) 1 package cli 2 3 // DONTCOVER 4 5 import ( 6 flag "github.com/spf13/pflag" 7 ) 8 9 const ( 10 FlagPoolCoinDenom = "pool-coin-denom" 11 FlagReserveAcc = "reserve-acc" 12 ) 13 14 func flagSetPool() *flag.FlagSet { 15 fs := flag.NewFlagSet("", flag.ContinueOnError) 16 17 fs.String(FlagPoolCoinDenom, "", "The denomination of the pool coin") 18 fs.String(FlagReserveAcc, "", "The Bech32 address of the reserve account") 19 20 return fs 21 }