Name | Lookup | Parameters | |
|---|---|---|---|
| vote | 2400 | 2 | |
| remove_voter | 2401 | - | |
| submit_candidacy | 2402 | 1 | |
| renounce_candidacy | 2403 | 1 | |
| remove_member | 2404 | 2 | |
| clean_defunct_voters | 2405 | 2 |
Name | Lookup | Attributes | |
|---|---|---|---|
| NewTerm | 2400 | ||
| EmptyTerm | 2401 | ||
| ElectionError | 2402 | ||
| MemberKicked | 2403 | ||
| Renounced | 2404 | ||
| CandidateSlashed | 2405 | ||
| SeatHolderSlashed | 2406 |
Name | Type | |
|---|---|---|
| Members | {"origin":"PlainType","plain_type":"Vec<SeatHolder<AccountId, BalanceOf>>"} | |
| RunnersUp | {"origin":"PlainType","plain_type":"Vec<SeatHolder<AccountId, BalanceOf>>"} | |
| Candidates | {"origin":"PlainType","plain_type":"Vec<(AccountId, BalanceOf)>"} | |
| ElectionRounds | {"origin":"PlainType","plain_type":"u32"} | |
| Voting | {"origin":"MapType","map_type":{"key":"AccountId","hasher":"Twox64Concat","value":"Voter<AccountId, BalanceOf>","isLinked":false}} |
Name | Type | Value | |
|---|---|---|---|
| CandidacyBond | BalanceOf | 0x8096980000000000 | |
| VotingBondBase | BalanceOf | 0xf0e13c0000000000 | |
| VotingBondFactor | BalanceOf | 0x004c1d0000000000 | |
| DesiredMembers | u32 | 0x0d000000 | |
| DesiredRunnersUp | u32 | 0x07000000 | |
| TermDuration | BlockNumber | 0x80130300 | |
| ModuleId | LockIdentifier | 0x706872656c656374 |
Name | Docs |
|---|---|
| UnableToVote | Cannot vote when no candidates or members exist. |
| NoVotes | Must vote for at least one candidate. |
| TooManyVotes | Cannot vote more than candidates. |
| MaximumVotesExceeded | Cannot vote more than maximum allowed. |
| LowBalance | Cannot vote with stake less than minimum balance. |
| UnableToPayBond | Voter can not pay voting bond. |
| MustBeVoter | Must be a voter. |
| ReportSelf | Cannot report self. |
| DuplicatedCandidate | Duplicated candidate submission. |
| MemberSubmit | Member cannot re-submit candidacy. |
| RunnerUpSubmit | Runner cannot re-submit candidacy. |
| InsufficientCandidateFunds | Candidate does not have enough funds. |
| NotMember | Not a member. |
| InvalidWitnessData | The provided count of number of candidates is incorrect. |
| InvalidVoteCount | The provided count of number of votes is incorrect. |
| InvalidRenouncing | The renouncing origin presented a wrong `Renouncing` parameter. |
| InvalidReplacement | Prediction regarding replacement after member removal is wrong. |