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(group): Prune expired proposals and votes #11315

Merged
merged 43 commits into from
Mar 28, 2022
Merged
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
0599220
fea(group)t: Prune expired proposals and votes
amaury1093 Mar 3, 2022
9b07e1c
Prune votes on Tally
amaury1093 Mar 3, 2022
5a259e8
fix failing tests
likhita-809 Mar 9, 2022
9f11299
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into am…
likhita-809 Mar 9, 2022
127b118
fix failing keeper tests
likhita-809 Mar 9, 2022
0e86494
add keeper tests for testing exec pruned proposals
likhita-809 Mar 9, 2022
3eb3419
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into am…
likhita-809 Mar 9, 2022
d2dc104
address review comments on keeper test
likhita-809 Mar 9, 2022
685dcdc
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into am…
likhita-809 Mar 10, 2022
42887f2
add abci tests
likhita-809 Mar 10, 2022
a23c51e
fix abci tests
likhita-809 Mar 10, 2022
2dfc206
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into am…
likhita-809 Mar 10, 2022
20d5a8e
nit
likhita-809 Mar 10, 2022
274e2d4
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into am…
likhita-809 Mar 10, 2022
d957c64
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into am…
likhita-809 Mar 11, 2022
1ac5470
Merge branch 'master' of github.com:cosmos/cosmos-sdk into am/11245-p…
atheeshp Mar 11, 2022
bb21465
address review comments
likhita-809 Mar 11, 2022
e78b25c
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into am…
likhita-809 Mar 11, 2022
f2fb7c5
Merge branch 'am/11245-prune-group' of github.com:cosmos/cosmos-sdk i…
atheeshp Mar 14, 2022
44289ab
Merge branch 'master' of github.com:cosmos/cosmos-sdk into am/11245-p…
atheeshp Mar 14, 2022
72c23d2
remove duplicate code
atheeshp Mar 14, 2022
1150eef
fix tests
atheeshp Mar 14, 2022
515a7a6
Merge branch 'master' into am/11245-prune-group
atheeshp Mar 15, 2022
f96809c
attempt fix tests
atheeshp Mar 15, 2022
19b3dd7
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into am…
likhita-809 Mar 16, 2022
0f17589
Merge branch 'am/11245-prune-group' of https://github.com/cosmos/cosm…
likhita-809 Mar 16, 2022
845c729
Merge branch 'master' into am/11245-prune-group
blushi Mar 16, 2022
08e8495
Merge branch 'master' into am/11245-prune-group
blushi Mar 17, 2022
30c8405
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into am…
likhita-809 Mar 18, 2022
48ace34
Merge branch 'master' into am/11245-prune-group
likhita-809 Mar 20, 2022
b31d67d
fix: Various group fixes (#11404)
blushi Mar 25, 2022
a793581
Merge branch 'master' into am/11245-prune-group
amaury1093 Mar 25, 2022
41f6c40
Update x/group/keeper/keeper.go
amaury1093 Mar 25, 2022
58999ce
Update x/group/keeper/keeper.go
amaury1093 Mar 25, 2022
082e83e
Fix 2 more places
amaury1093 Mar 25, 2022
13d119f
Update docs
amaury1093 Mar 25, 2022
245b956
Merge branch 'master' into am/11245-prune-group
likhita-809 Mar 25, 2022
d38da5d
Improve docs
amaury1093 Mar 25, 2022
c6ac683
Merge branch 'am/11245-prune-group' of ssh://github.com/cosmos/cosmos…
amaury1093 Mar 25, 2022
9be41cd
Update x/group/spec/01_concepts.md
amaury1093 Mar 25, 2022
fee7d95
Update x/group/spec/01_concepts.md
amaury1093 Mar 25, 2022
f4922fe
Merge branch 'master' into am/11245-prune-group
amaury1093 Mar 25, 2022
364ddfb
Merge branch 'master' into am/11245-prune-group
tac0turtle Mar 27, 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
172 changes: 119 additions & 53 deletions api/cosmos/group/v1/events.pulsar.go

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions proto/cosmos/group/v1/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ syntax = "proto3";
package cosmos.group.v1;

import "cosmos_proto/cosmos.proto";
import "cosmos/group/v1/types.proto";

option go_package = "github.com/cosmos/cosmos-sdk/x/group";

Expand Down Expand Up @@ -60,6 +61,9 @@ message EventExec {

// proposal_id is the unique ID of the proposal.
uint64 proposal_id = 1;

// result is the proposal execution result.
ProposalExecutorResult result = 2;
}

// EventLeaveGroup is an event emitted when group member leaves the group.
Expand Down
75 changes: 57 additions & 18 deletions x/group/events.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading