[][src]Struct pallet_democracy::Module

pub struct Module<T: Trait>(_);

Implementations

impl<T: Trait + 'static> Module<T>[src]

pub fn public_prop_count() -> PropIndex[src]

The number of (public) proposals that have been made so far.

pub fn public_props() -> Vec<(PropIndex, T::Hash, T::AccountId)>[src]

The public proposals. Unsorted. The second item is the proposal's hash.

pub fn deposit_of<K: EncodeLike<PropIndex>>(
    key: K
) -> Option<(Vec<T::AccountId>, <<T as Trait>::Currency as Currency<<T as Trait>::AccountId>>::Balance)>
[src]

Those who have locked a deposit.

TWOX-NOTE: Safe, as increasing integer keys are safe.

pub fn referendum_count() -> ReferendumIndex[src]

The next free referendum index, aka the number of referenda started so far.

pub fn lowest_unbaked() -> ReferendumIndex[src]

The lowest referendum index representing an unbaked referendum. Equal to ReferendumCount if there isn't a unbaked referendum.

pub fn referendum_info<K: EncodeLike<ReferendumIndex>>(
    key: K
) -> Option<ReferendumInfo<T::BlockNumber, T::Hash, <<T as Trait>::Currency as Currency<<T as Trait>::AccountId>>::Balance>>
[src]

Information concerning any given referendum.

TWOX-NOTE: SAFE as indexes are not under an attacker’s control.

pub fn locks<K: EncodeLike<T::AccountId>>(key: K) -> Option<T::BlockNumber>[src]

Accounts for which there are locks in action which may be removed at some point in the future. The value is the block number at which the lock expires and may be removed.

TWOX-NOTE: OK ― AccountId is a secure hash.

pub fn blacklist<K: EncodeLike<T::Hash>>(
    key: K
) -> Option<(T::BlockNumber, Vec<T::AccountId>)>
[src]

A record of who vetoed what. Maps proposal hash to a possible existent block number (until when it may not be resubmitted) and who vetoed it.

impl<T: Trait> Module<T>[src]

Can also be called using Call.

pub fn delegate(
    origin: T::Origin,
    to: T::AccountId,
    conviction: Conviction,
    balance: <<T as Trait>::Currency as Currency<<T as Trait>::AccountId>>::Balance
) -> DispatchResultWithPostInfo
[src]

Delegate the voting power (with some given conviction) of the sending account.

The balance delegated is locked for as long as it's delegated, and thereafter for the time appropriate for the conviction's lock period.

The dispatch origin of this call must be Signed, and the signing account must either:

  • be delegating already; or

  • have no voting activity (if there is, then it will need to be removed/consolidated through reap_vote or unvote).

  • to: The account whose voting the target account's voting power will follow.

  • conviction: The conviction that will be attached to the delegated votes. When the account is undelegated, the funds will be locked for the corresponding period.

  • balance: The amount of the account's balance to be used in delegating. This must not be more than the account's current balance.

Emits Delegated.

  • Complexity: O(R) where R is the number of referendums the voter delegating to has voted on. Weight is charged as if maximum votes.
  • Db reads: 3*VotingOf, origin account locks
  • Db writes: 3*VotingOf, origin account locks
  • Db reads per votes: ReferendumInfoOf
  • Db writes per votes: ReferendumInfoOf

NOTE: Calling this function will bypass origin filters.

impl<T: Trait> Module<T>[src]

pub fn backing_for(
    proposal: PropIndex
) -> Option<<<T as Trait>::Currency as Currency<<T as Trait>::AccountId>>::Balance>
[src]

Get the amount locked in support of proposal; None if proposal isn't a valid proposal index.

pub fn maturing_referenda_at(
    n: T::BlockNumber
) -> Vec<(ReferendumIndex, ReferendumStatus<T::BlockNumber, T::Hash, <<T as Trait>::Currency as Currency<<T as Trait>::AccountId>>::Balance>)>
[src]

Get all referenda ready for tally at block n.

pub fn internal_start_referendum(
    proposal_hash: T::Hash,
    threshold: VoteThreshold,
    delay: T::BlockNumber
) -> ReferendumIndex
[src]

Start a referendum.

pub fn internal_cancel_referendum(ref_index: ReferendumIndex)[src]

Remove a referendum.

Trait Implementations

impl<T: Trait> Callable<T> for Module<T>[src]

type Call = Call<T>

impl<T: Clone + Trait> Clone for Module<T>[src]

impl<T: Copy + Trait> Copy for Module<T>[src]

impl<T: Trait> Debug for Module<T> where
    T: Debug
[src]

impl<T: Eq + Trait> Eq for Module<T>[src]

impl<T: Trait> IntegrityTest for Module<T>[src]

impl<T: Trait> ModuleErrorMetadata for Module<T>[src]

impl<T: Trait + Trait> OffchainWorker<<T as Trait>::BlockNumber> for Module<T>[src]

impl<T: Trait + Trait> OnFinalize<<T as Trait>::BlockNumber> for Module<T>[src]

impl<T: Trait + Trait> OnInitialize<<T as Trait>::BlockNumber> for Module<T>[src]

impl<T: Trait> OnRuntimeUpgrade for Module<T>[src]

impl<T: PartialEq + Trait> PartialEq<Module<T>> for Module<T>[src]

impl<T: Trait> StructuralEq for Module<T>[src]

impl<T: Trait> StructuralPartialEq for Module<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Module<T> where
    T: RefUnwindSafe

impl<T> Send for Module<T> where
    T: Send

impl<T> Sync for Module<T> where
    T: Sync

impl<T> Unpin for Module<T> where
    T: Unpin

impl<T> UnwindSafe for Module<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedConversion for T[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IsType<T> for T[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    Outer: AsRef<T> + AsMut<T> + From<T>,
    T: From<Outer>, 

fn from_ref(outer: &Outer) -> &T

Get a reference to the inner from the outer.

fn from_mut(outer: &mut Outer) -> &mut T

Get a mutable reference to the inner from the outer.

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> Member for T where
    T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 

impl<T, S> UniqueSaturatedInto<T> for S where
    S: TryInto<T>,
    T: Bounded

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,