Skip to content

Commit

Permalink
docs/usage fixes (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
UnityChaos authored Oct 14, 2021
1 parent 2767946 commit 427215e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x/gamm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ osmosisd tx gamm join-pool [flags]
#### Example
Join pool 1 with 1 OSMO and the respective amount of ATOM, using myKeyringWallet.
```sh
osmosisd tx gamm join-pool --pool-id 1 --max-amounts-in 1000000uosmo --share-amount-out 1000000 --from myKeyringWallet
osmosisd tx gamm join-pool --pool-id 2 --max-amounts-in 1000000uosmo --max-amounts-in 1000000uion --share-amount-out 1000000 --from myKeyringWallet
```


Expand Down
4 changes: 2 additions & 2 deletions x/gamm/client/cli/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ func FlagSetJoinPool() *flag.FlagSet {
fs := flag.NewFlagSet("", flag.ContinueOnError)

fs.Uint64(FlagPoolId, 0, "The id of pool")
fs.String(FlagShareAmountOut, "", "TODO: add description")
fs.StringArray(FlagMaxAmountsIn, []string{""}, "TODO: add description")
fs.String(FlagShareAmountOut, "", "Minimum amount of Gamm tokens to receive")
fs.StringArray(FlagMaxAmountsIn, []string{""}, "Maximum amount of each denom to send into the pool (specify multiple denoms with: --max-amounts-in=1uosmo --max-amounts-in=1uion)")

return fs
}
Expand Down

1 comment on commit 427215e

@dimiandre
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks you!

Please sign in to comment.