-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem: missing IAVL configuration options (#890)
Solution: upgraded SDK to SDK 0.46.4 + added the IAVL configuration options
- Loading branch information
Showing
16 changed files
with
37 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,7 +70,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.19.2 | ||
go-version: 1.19.3 | ||
- name: Checkout Comment PR Branch | ||
uses: actions/checkout@v2 | ||
if: github.event_name == 'issue_comment' | ||
|
@@ -126,7 +126,7 @@ jobs: | |
steps: | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.19.2 | ||
go-version: 1.19.3 | ||
- name: install runsim | ||
run: | | ||
export GO111MODULE="on" && go install github.com/cosmos/tools/cmd/[email protected] | ||
|
@@ -165,7 +165,7 @@ jobs: | |
echo "::set-output name=repo_name::${{ fromJson(steps.request.outputs.data).head.repo.full_name }}" | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.19.2 | ||
go-version: 1.19.3 | ||
- name: Checkout Comment PR Branch | ||
uses: actions/checkout@v2 | ||
if: github.event_name == 'issue_comment' | ||
|
@@ -228,7 +228,7 @@ jobs: | |
echo "::set-output name=repo_name::${{ fromJson(steps.request.outputs.data).head.repo.full_name }}" | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.19.2 | ||
go-version: 1.19.3 | ||
- name: Checkout Comment PR Branch | ||
uses: actions/checkout@v2 | ||
if: github.event_name == 'issue_comment' | ||
|
@@ -290,7 +290,7 @@ jobs: | |
echo "::set-output name=repo_name::${{ fromJson(steps.request.outputs.data).head.repo.full_name }}" | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.19.2 | ||
go-version: 1.19.3 | ||
- name: Checkout Comment PR Branch | ||
uses: actions/checkout@v2 | ||
if: github.event_name == 'issue_comment' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cosmos-sdk
updated
8 files
+10 −0 | CHANGELOG.md | |
+11 −19 | RELEASE_NOTES.md | |
+1 −1 | go.mod | |
+2 −2 | go.sum | |
+9 −2 | types/context.go | |
+5 −0 | types/context_test.go | |
+0 −6 | x/gov/abci.go | |
+1 −7 | x/group/keeper/msg_server.go |
Submodule ibc-go
updated
18 files
+1 −1 | .github/PULL_REQUEST_TEMPLATE.md | |
+6 −0 | CHANGELOG.md | |
+5 −0 | docs/.vuepress/config.js | |
+1 −1 | docs/DOCS_README.md | |
+1 −1 | docs/apps/transfer/metrics.md | |
+1 −1 | docs/ibc/apps.md | |
+1 −1 | docs/ibc/apps/apps.md | |
+1 −1 | docs/ibc/integration.md | |
+1 −1 | docs/ibc/overview.md | |
+1 −1 | docs/ibc/relayer.md | |
+3 −3 | docs/middleware/ics29-fee/fee-distribution.md | |
+1 −1 | docs/migrations/v2-to-v3.md | |
+39 −26 | go.mod | |
+83 −46 | go.sum | |
+2 −1 | modules/apps/27-interchain-accounts/controller/keeper/account.go | |
+4 −2 | modules/core/23-commitment/types/merkle.go | |
+11 −0 | testing/simapp/app.go | |
+23 −0 | testing/simapp/upgrades/upgrades.go |