-
Notifications
You must be signed in to change notification settings - Fork 815
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
Add confidential transfer queries to seid #1931
Conversation
lgtm. Similarly (to another cli pr), let's add tests where possible |
Short: "Query the account state", | ||
Long: "Queries the account state associated with the address and denom." + | ||
"Pass the --from flag to decrypt the account." + | ||
"Pass the --decryptAvailableBalance flag to attempt to decrypt the available balance.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
usually multi word flags I think are concatenated with -
e.g.
--decrypt-available-balance
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed to --decrypt-available-balance
"Pass the --from flag to decrypt the account." + | ||
"Pass the --decryptAvailableBalance flag to attempt to decrypt the available balance.", | ||
Args: cobra.ExactArgs(2), | ||
RunE: func(cmd *cobra.Command, args []string) error { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I think we were moving those functions to separate methods in tx. Might make our code consistent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved to separate functions for both
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## feature/ct_types #1931 +/- ##
====================================================
- Coverage 61.36% 60.12% -1.24%
====================================================
Files 263 280 +17
Lines 23306 25290 +1984
====================================================
+ Hits 14301 15206 +905
- Misses 8001 8951 +950
- Partials 1004 1133 +129
|
Describe your changes and provide context
This PR adds seid queries for the confidential transfers module.
Testing performed to validate your change