-
Notifications
You must be signed in to change notification settings - Fork 591
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
fix: add cosmos.msg.v1.service to message services #8689
Conversation
WalkthroughThis pull request updates the Changes
Possibly related PRs
Suggested labels
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (2)
📒 Files selected for processing (3)
🧰 Additional context used🔇 Additional comments (8)
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 using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Important Notice This PR modifies an in-repo Go module. It is one of:
The dependent Go modules, especially the root one, will have to be Please follow the instructions below:
Please let us know if you need any help. |
…/osmosis-labs/osmosis into faddat/give-the-proto-annotation
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: 1
@@ -1,6 +1,8 @@ | |||
syntax = "proto3"; | |||
package osmosis.cosmwasmpool.v1beta1; | |||
|
|||
import "cosmos/msg/v1/msg.proto"; |
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.
Resolve the missing import file.
The import statement import "cosmos/msg/v1/msg.proto";
is added to support the new option in the Msg
service. However, the static analysis tool reports that the imported file does not exist, which could lead to compilation errors.
Please ensure that the cosmos/msg/v1/msg.proto
file is available in the expected location or update the import path to point to the correct location of the file.
Do you want me to help resolve this issue? I can try to locate the missing file in the repository or suggest alternative import paths.
Tools
buf
4-4: import "cosmos/msg/v1/msg.proto": file does not exist
(COMPILE)
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.
I think things are okay here Mr. Rabbit. Will wait for the team's review though.
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.
@faddat Understood! I'll be here if you need any further assistance after the team's review. 😊
I'm pretty confident that the |
I trust commit f607ea9 but not the one after it |
This is being caused by |
…/osmosis-labs/osmosis into faddat/give-the-proto-annotation
gm gm gm, would you mind merging main into your branch and I can start reviewing! We reverted => #8710 => so the build should work now 🙏 |
This pull request has been automatically marked as stale because it has not had any recent activity. It will be closed if no further activity occurs. Thank you! |
oh sure thing! |
This pull request has been automatically marked as stale because it has not had any recent activity. It will be closed if no further activity occurs. Thank you! |
This pull request has been automatically marked as stale because it has not had any recent activity. It will be closed if no further activity occurs. Thank you! |
What is the purpose of the change
This pull request resolves an issue I encountered with using Osmosis modules in a third party chain:
I think that the difference between osmosis and the other chain is the use of appv2, so I checked IBC and cosmwasm, and found the annotation there.
Testing and Verifying
This change is already covered by existing tests. If tests don't pass, or the change doesn't make sense to maintainers, please close this PR :)
Documentation and Release Note
Unreleased
section ofCHANGELOG.md
? shortly, yesWhere is the change documented?
x/{module}/README.md
)