-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allow underscores or other separators in coin denominations in CLI #3874
Comments
Thing is we cannot use |
I see. then how about |
We can really use whatever we want really, as in |
Wait is this already resolved? |
I believe from convos I had w/ @jaekwon, we only want to support |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
Now that Go has since 2019 supported underscores in Go1.13, strconv.ParseInt https://pkg.go.dev/strconv#ParseInt and also after @aaronc's PR #9699 which permitted Line 831 in bafe504
I think that this issue can now be closed. Kindly pinging @elias-orijtech, could you help quarterback the closing and any related changes for this issue? Thank you |
Summary
Since the base unit is micro-atom, we frequently need to type very large numbers into the CLI which is error prone. Allowing separators will make this easier (a la PEP 515)
Think this is really only necessary in the raw gaiacli interface; could be as simple as as
strreplace('_', '')
in the argument parserFor Admin Use
The text was updated successfully, but these errors were encountered: