Skip to content
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

deps: bump SDK v0.47 #3295

Merged
merged 10 commits into from
Mar 15, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add migration docs comment
Carlos Rodriguez committed Mar 14, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit aab52a4522630b32a5f0fe38c623375f983875fd
7 changes: 7 additions & 0 deletions docs/migrations/v6-to-v7.md
Original file line number Diff line number Diff line change
@@ -95,6 +95,13 @@ It may be useful to reference the [PR](https://github.com/cosmos/ibc-go/pull/282

The `SetChannelClosed` utility method in `testing/endpoint.go` has been updated to `SetChannelState`, which will take a `channeltypes.State` argument so that the `ChannelState` can be set to any of the possible channel states.

The function to initialize the `TestingApp` takes now the chain ID as parameter:

```go
- func SetupTestingApp() (TestingApp, map[string]json.RawMessage)
+ func SetupTestingApp(chainID string) (TestingApp, map[string]json.RawMessage)
```

## IBC Apps

- No relevant changes were made in this release.