-
Notifications
You must be signed in to change notification settings - Fork 614
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
testing: e2e support for sdkv50 #4174
testing: e2e support for sdkv50 #4174
Conversation
This reverts commit 4580f76.
…o ibc-go-sdk-50-mark-2
@@ -271,8 +271,8 @@ func (s *E2ETestSuite) QueryProposalV1(ctx context.Context, chain ibc.Chain, pro | |||
|
|||
// GetBlockHeaderByHeight fetches the block header at a given height. | |||
func (s *E2ETestSuite) GetBlockHeaderByHeight(ctx context.Context, chain ibc.Chain, height uint64) (Header, error) { | |||
cmtservice := s.GetChainGRCPClients(chain).ConsensusServiceClient | |||
res, err := cmtservice.GetBlockByHeight(ctx, &ccmtservice.GetBlockByHeightRequest{ | |||
ccmtservice := s.GetChainGRCPClients(chain).ConsensusServiceClient |
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.
are the diffs here just for the rename? any reason why we do them?
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.
ah, conflicts with the import for the client I'd guess "github.com/cosmos/cosmos-sdk/client/grpc/cmtservice"
and linter is muy triste about it, leaving comment here so others don't ask same thing
// GetExpectedEvent returns the expected event for a callback. | ||
func GetExpectedEvent( |
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 this should be added back, looks like maybe it got removed accidentally?
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.
is it actually being used anywhere?
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.
Yea, I will add back. The usage was deleted :)
This PR begins work to make the e2e tests support sdk 50,
based on this PR to interchaintest:
strangelove-ventures/interchaintest#674