-
Notifications
You must be signed in to change notification settings - Fork 126
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
feat(logic): mark rpc queries as safe #711
Conversation
WalkthroughThe recent changes enhance the Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
This allows to use ICA module safe queries with logic rpc queres
625e034
to
66b1b8c
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅ @@ Coverage Diff @@
## main #711 +/- ##
=======================================
Coverage 54.42% 54.42%
=======================================
Files 73 73
Lines 2901 2901
=======================================
Hits 1579 1579
Misses 1228 1228
Partials 94 94 |
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.
Actionable comments posted: 0
Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Files ignored due to path filters (1)
x/logic/types/query.pb.go
is excluded by!**/*.pb.go
Files selected for processing (1)
- proto/logic/v1beta2/query.proto (2 hunks)
Additional comments not posted (3)
proto/logic/v1beta2/query.proto (3)
5-5
: Import statement looks good.The import of
cosmos/query/v1/query.proto
is necessary for themodule_query_safe
option.
17-17
: MarkingParams
RPC as safe is correct.The
option (cosmos.query.v1.module_query_safe) = true;
correctly marks theParams
RPC as safe.
25-25
: MarkingAsk
RPC as safe is correct.The
option (cosmos.query.v1.module_query_safe) = true;
correctly marks theAsk
RPC as safe.
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.
Good improvement. 👍
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.
👍
Allow to use logic module queries from ICA module safe query by marking them as safe.
Summary by CodeRabbit
Params
andAsk
queries within theQueryService
to ensure safer execution in the Cosmos module context.These changes elevate the operational safety and compatibility of the query service within the broader Cosmos framework.