-
Notifications
You must be signed in to change notification settings - Fork 585
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
Update e2e go.mod #2022
Update e2e go.mod #2022
Conversation
Fix: compiling error. replace IBC module to the local, which is convenient for development
e2e/go.mod
Outdated
replace ( | ||
github.com/ChainSafe/go-schnorrkel => github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d | ||
github.com/ChainSafe/go-schnorrkel/1 => github.com/ChainSafe/go-schnorrkel v1.0.0 | ||
github.com/cosmos/ibc-go/v5 => ../ |
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'm a bit hesitant to pin this.
Currently, ibctest
is pinned to v5, if we update to v6, the tests will fail due to a duplicate message registration with multiple ibc-go
imports.
We're explicitly keeping it separate right now, but I think having this as a commented line at the bottom of the file would be very useful for development, i.e.
// uncomment to use the local version of ibc-go
// replace github.com/cosmos/ibc-go/v5 => ../`
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.
OK, Yeah, it's better.
add comment for local version
Hi @liangping, it looks like you'll need to run |
I did. |
Let me add it to the comment |
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.
LGTM thanks @liangping
Fix: compiling error.
replace IBC module to the local, which is convenient for development
Description
closes: #XXXX
Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.
docs/
) or specification (x/<module>/spec/
)godoc
comments.Unreleased
section inCHANGELOG.md
Files changed
in the Github PR explorerCodecov Report
in the comment section below once CI passes