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

feat: implement new gov msg & query servers #10868

Merged
merged 49 commits into from
Jan 21, 2022
Merged
Show file tree
Hide file tree
Changes from 42 commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
50bdd18
checkpoint
cmwaters Dec 22, 2021
f9d43a7
add logic for executing and submitting a proposal
cmwaters Jan 4, 2022
b3b859a
go fmt
cmwaters Jan 4, 2022
79c7a64
add proposal test and nil check
cmwaters Jan 4, 2022
be5bcc9
Merge branch 'master' into callum/gov-msg-server
cmwaters Jan 4, 2022
46d984c
Merge branch 'master' into callum/gov-msg-server
cmwaters Jan 7, 2022
099a3c2
resolve merge conflicts
cmwaters Jan 7, 2022
7871f98
fix auth
cmwaters Jan 7, 2022
dbbb0c9
fix missed compile errors
cmwaters Jan 7, 2022
673e972
fix a few tests
cmwaters Jan 7, 2022
3af7d07
fix more tests
cmwaters Jan 7, 2022
833db47
Fix some tests
amaury1093 Jan 11, 2022
1f46581
Fix some more tests
amaury1093 Jan 11, 2022
0b8eeb3
Merge branch 'master' of ssh://github.com/cosmos/cosmos-sdk into call…
amaury1093 Jan 12, 2022
3355e07
Fix 2 or 3 more tests
amaury1093 Jan 12, 2022
d148522
Small cleanups
amaury1093 Jan 12, 2022
b24374a
Fix more
amaury1093 Jan 13, 2022
d46152c
Fix gov query
amaury1093 Jan 13, 2022
f601e56
Use Msg ExecLegacyContent
amaury1093 Jan 13, 2022
c84a25d
Switch some more CLI to v1beta2
amaury1093 Jan 13, 2022
35e16ec
Refactor codec stuff
amaury1093 Jan 14, 2022
176a570
Merge branch 'master' into callum/gov-msg-server
amaury1093 Jan 14, 2022
b255add
Revert proto lints
amaury1093 Jan 14, 2022
d6d24d3
revert orm changes
amaury1093 Jan 14, 2022
06d26d3
Fix proposal_handler test
amaury1093 Jan 14, 2022
a0a4e55
Revert some changes
amaury1093 Jan 14, 2022
b78b053
Move legacy stuff into ExecLegacyContent
amaury1093 Jan 14, 2022
a7e06f6
don't leave any empty []sdk.Msg{}
amaury1093 Jan 14, 2022
e6f2e7c
changelog
amaury1093 Jan 14, 2022
99b0e8f
Merge branch 'master' of ssh://github.com/cosmos/cosmos-sdk into call…
amaury1093 Jan 17, 2022
cf89ee0
Make proto-gen
amaury1093 Jan 17, 2022
24f9a9d
Fix genesis tests
amaury1093 Jan 17, 2022
11ba488
Fix genesis state
amaury1093 Jan 17, 2022
8f13e99
Add test with nested anys
amaury1093 Jan 17, 2022
e910dbf
Fix all tests?
amaury1093 Jan 18, 2022
171ce46
Merge branch 'master' of ssh://github.com/cosmos/cosmos-sdk into call…
amaury1093 Jan 18, 2022
3acea89
Fix feegrant tests with more gas
amaury1093 Jan 18, 2022
be045bd
Update x/gov/keeper/msg_server.go
amaury1093 Jan 20, 2022
43e18e5
Address reviews
amaury1093 Jan 20, 2022
175ffad
Fix querier test
amaury1093 Jan 20, 2022
c760b1e
Merge branch 'master' of ssh://github.com/cosmos/cosmos-sdk into call…
amaury1093 Jan 20, 2022
d16e290
Update x/gov/keeper/querier_test.go
amaury1093 Jan 20, 2022
9ef5dad
Update x/gov/keeper/proposal.go
amaury1093 Jan 20, 2022
4bad077
Address reviews
amaury1093 Jan 20, 2022
0a6e01a
Merge branch 'callum/gov-msg-server' of ssh://github.com/cosmos/cosmo…
amaury1093 Jan 20, 2022
69b2e66
Move all errors to types/errors.go
amaury1093 Jan 20, 2022
a0a2289
Merge branch 'master' of ssh://github.com/cosmos/cosmos-sdk into call…
amaury1093 Jan 21, 2022
d9e4067
make proto-gen
amaury1093 Jan 21, 2022
e1d59ef
Merge branch 'master' into callum/gov-msg-server
amaury1093 Jan 21, 2022
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* [\#10748](https://github.com/cosmos/cosmos-sdk/pull/10748) Move legacy `x/gov` api to `v1beta1` directory.
* [\#10816](https://github.com/cosmos/cosmos-sdk/pull/10816) Reuse blocked addresses from the bank module. No need to pass them to distribution.
* [\#10852](https://github.com/cosmos/cosmos-sdk/pull/10852) Move `x/gov/types` to `x/gov/types/v1beta2`.
* [\#10868](https://github.com/cosmos/cosmos-sdk/pull/10868) The Gov keeper accepts now a mandatory last argument, the ServiceMsgRouter.

### Client Breaking Changes

Expand Down Expand Up @@ -190,6 +191,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* [\#10422](https://github.com/cosmos/cosmos-sdk/pull/10422) and [\#10529](https://github.com/cosmos/cosmos-sdk/pull/10529) Add `MinCommissionRate` param to `x/staking` module.
* [#10763](https://github.com/cosmos/cosmos-sdk/pull/10763) modify the fields in `TallyParams` to use `string` instead of `bytes`
* [#10770](https://github.com/cosmos/cosmos-sdk/pull/10770) revert tx when block gas limit exceeded
* [\#10868](https://github.com/cosmos/cosmos-sdk/pull/10868) Bump gov to v1beta2. Both v1beta1 and v1beta2 queries and Msgs are accepted.

### Deprecated

Expand Down
Loading