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!: key assignment checking key in use #1339

Merged
merged 26 commits into from
Nov 28, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
67ec715
feat!: store proposed chainID before voting finishes (#1289)
yaruwangway Oct 2, 2023
3a3e157
fix test
Oct 2, 2023
9fb3871
feat: update GetAllValidatorsByConsumerAddr for fast find consensus k…
yaruwangway Oct 2, 2023
35b4a5c
update changelog
Oct 2, 2023
e09d930
Update proto/interchain_security/ccv/provider/v1/query.proto
sainoe Oct 10, 2023
b97c1cb
Update x/ccv/provider/keeper/gov_hook.go
sainoe Oct 10, 2023
0ae0649
Update x/ccv/provider/keeper/keeper.go
sainoe Oct 10, 2023
880eaef
Update x/ccv/provider/keeper/keeper.go
sainoe Oct 10, 2023
c95faea
Update x/ccv/provider/keeper/keeper.go
sainoe Oct 10, 2023
584ce4e
fix gov hooks
sainoe Oct 11, 2023
b26b453
fix bug and add tests
sainoe Oct 12, 2023
a240ab5
finish unit testing of consu addition legacy prop getter
sainoe Nov 14, 2023
326423c
Merge branch 'main' into sainoe/refactor-key-assignment
sainoe Nov 14, 2023
94fd342
nit
sainoe Nov 15, 2023
f196cc9
update changelog
sainoe Nov 15, 2023
10441bd
Merge branch 'main' into feat/refactor-key-assignment
sainoe Nov 15, 2023
642ca29
lint
sainoe Nov 15, 2023
e1cb6b3
Merge branch 'sainoe/refactor-key-assignment' into feat/refactor-key-…
sainoe Nov 15, 2023
4b3b8ed
update changelog entry
sainoe Nov 15, 2023
50cb42a
Update .changelog/unreleased/features/provider/1339-check-key-assignm…
sainoe Nov 22, 2023
441bcee
fix #1282
sainoe Nov 22, 2023
167a74d
remove todos and update doc
sainoe Nov 23, 2023
efc3f95
tests: fix broken unit tests
MSalopek Nov 27, 2023
29528b2
tests: fix broken integration test consumer registration
MSalopek Nov 27, 2023
4a38b9a
tests: update names
MSalopek Nov 27, 2023
431b706
Resolve conflicts & merge branch 'main' into feat/refactor-key-assign…
MSalopek Nov 27, 2023
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
Update proto/interchain_security/ccv/provider/v1/query.proto
  • Loading branch information
sainoe authored Oct 10, 2023
commit e09d9304d48a2063d7c444fbd175dfb11fbd0f22
4 changes: 2 additions & 2 deletions proto/interchain_security/ccv/provider/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ service Query {
"/interchain_security/ccv/provider/registered_consumer_reward_denoms";
}

// QueryProposedConsumerChainIDs query chainIDs in consumerAdditionProposals
// before voting period finishes, after voting period finishes, this chainID will be removed from the result
// QueryProposedConsumerChainIDs returns the chain IDs of the proposed consumer chain addition proposals
// that are still in the voting period
rpc QueryProposedConsumerChainIDs(
QueryProposedChainIDsRequest)
returns (QueryProposedChainIDsResponse) {
Expand Down