Struct governance_os_pallet_conviction_voting::ProposalState[][src]

pub struct ProposalState<AccountId, Balance, BlockNumber, CurrencyId> {
    pub parameters: VotingParameters<BlockNumber, CurrencyId>,
    pub created_on: BlockNumber,
    pub convictions: Vec<(AccountId, BlockNumber, Conviction<Balance>)>,
    pub conviction_for: Balance,
    pub conviction_against: Balance,
    pub snapshot: ConvictionSnapshot<Balance>,
}

Fields

parameters: VotingParameters<BlockNumber, CurrencyId>

Parameters that this proposal was created with.

created_on: BlockNumber

Record when the proposal was created. Used to know when it is expired (when the ttl is over).

convictions: Vec<(AccountId, BlockNumber, Conviction<Balance>)>

Conviction votes on this proposal.

conviction_for: Balance

How much tokens are staked in favor of the proposal.

conviction_against: Balance

How much tokens are staked against the proposal.

snapshot: ConvictionSnapshot<Balance>

Snapshot of our different conviction records. Used to compute the current conviction progressively.

Implementations

impl<AccountId: Clone, Balance: Copy + BaseArithmetic, BlockNumber: Copy + BaseArithmetic, CurrencyId> ProposalState<AccountId, Balance, BlockNumber, CurrencyId>[src]

pub fn mutate_conviction_snapshot(
    &mut self,
    now: BlockNumber,
    decay: Balance
) -> DispatchResult
[src]

Compute the current amount of conviction for or against the proposal and save its latest value in the proposal state. now should be the current block number. decay is the decay variable of the half life exponential formula.

Refer to this work from EthParis. Also view this 1Hive thread.

Trait Implementations

impl<AccountId: Clone, Balance: Clone, BlockNumber: Clone, CurrencyId: Clone> Clone for ProposalState<AccountId, Balance, BlockNumber, CurrencyId>[src]

impl<AccountId, Balance, BlockNumber, CurrencyId> Debug for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    AccountId: Debug,
    Balance: Debug,
    BlockNumber: Debug,
    CurrencyId: Debug
[src]

impl<AccountId, Balance, BlockNumber, CurrencyId> Decode for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    VotingParameters<BlockNumber, CurrencyId>: Decode,
    VotingParameters<BlockNumber, CurrencyId>: Decode,
    BlockNumber: Decode,
    BlockNumber: Decode,
    Vec<(AccountId, BlockNumber, Conviction<Balance>)>: Decode,
    Vec<(AccountId, BlockNumber, Conviction<Balance>)>: Decode,
    Balance: Decode,
    Balance: Decode,
    Balance: Decode,
    Balance: Decode,
    ConvictionSnapshot<Balance>: Decode,
    ConvictionSnapshot<Balance>: Decode
[src]

impl<AccountId: Default, Balance: Default, BlockNumber: Default, CurrencyId: Default> Default for ProposalState<AccountId, Balance, BlockNumber, CurrencyId>[src]

impl<'de, AccountId, Balance, BlockNumber, CurrencyId> Deserialize<'de> for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    AccountId: Deserialize<'de>,
    Balance: Deserialize<'de>,
    BlockNumber: Deserialize<'de>,
    CurrencyId: Deserialize<'de>, 
[src]

impl<AccountId, Balance, BlockNumber, CurrencyId> Encode for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    VotingParameters<BlockNumber, CurrencyId>: Encode,
    VotingParameters<BlockNumber, CurrencyId>: Encode,
    BlockNumber: Encode,
    BlockNumber: Encode,
    Vec<(AccountId, BlockNumber, Conviction<Balance>)>: Encode,
    Vec<(AccountId, BlockNumber, Conviction<Balance>)>: Encode,
    Balance: Encode,
    Balance: Encode,
    Balance: Encode,
    Balance: Encode,
    ConvictionSnapshot<Balance>: Encode,
    ConvictionSnapshot<Balance>: Encode
[src]

impl<AccountId: PartialEq, Balance: PartialEq, BlockNumber: PartialEq, CurrencyId: PartialEq> PartialEq<ProposalState<AccountId, Balance, BlockNumber, CurrencyId>> for ProposalState<AccountId, Balance, BlockNumber, CurrencyId>[src]

impl<AccountId, Balance, BlockNumber, CurrencyId> Serialize for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    AccountId: Serialize,
    Balance: Serialize,
    BlockNumber: Serialize,
    CurrencyId: Serialize
[src]

impl<T: Config> StorageMap<<T as Config>::Hash, ProposalState<<T as Config>::AccountId, <<T as Config>::Currencies as Currencies<<T as Config>::AccountId>>::Balance, <T as Config>::BlockNumber, <<T as Config>::Currencies as Currencies<<T as Config>::AccountId>>::CurrencyId>> for Proposals<T>[src]

type Query = ProposalState<<T as Config>::AccountId, <<T as Config>::Currencies as Currencies<<T as Config>::AccountId>>::Balance, <T as Config>::BlockNumber, <<T as Config>::Currencies as Currencies<<T as Config>::AccountId>>::CurrencyId>

The type that get/take returns.

type Hasher = Blake2_128Concat

Hasher. Used for generating final key.

impl<T: Config> StoragePrefixedMap<ProposalState<<T as Config>::AccountId, <<T as Config>::Currencies as Currencies<<T as Config>::AccountId>>::Balance, <T as Config>::BlockNumber, <<T as Config>::Currencies as Currencies<<T as Config>::AccountId>>::CurrencyId>> for Proposals<T>[src]

impl<AccountId, Balance, BlockNumber, CurrencyId> EncodeLike<ProposalState<AccountId, Balance, BlockNumber, CurrencyId>> for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    VotingParameters<BlockNumber, CurrencyId>: Encode,
    VotingParameters<BlockNumber, CurrencyId>: Encode,
    BlockNumber: Encode,
    BlockNumber: Encode,
    Vec<(AccountId, BlockNumber, Conviction<Balance>)>: Encode,
    Vec<(AccountId, BlockNumber, Conviction<Balance>)>: Encode,
    Balance: Encode,
    Balance: Encode,
    Balance: Encode,
    Balance: Encode,
    ConvictionSnapshot<Balance>: Encode,
    ConvictionSnapshot<Balance>: Encode
[src]

impl<AccountId: Eq, Balance: Eq, BlockNumber: Eq, CurrencyId: Eq> Eq for ProposalState<AccountId, Balance, BlockNumber, CurrencyId>[src]

impl<AccountId, Balance, BlockNumber, CurrencyId> StructuralEq for ProposalState<AccountId, Balance, BlockNumber, CurrencyId>[src]

impl<AccountId, Balance, BlockNumber, CurrencyId> StructuralPartialEq for ProposalState<AccountId, Balance, BlockNumber, CurrencyId>[src]

Auto Trait Implementations

impl<AccountId, Balance, BlockNumber, CurrencyId> RefUnwindSafe for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    AccountId: RefUnwindSafe,
    Balance: RefUnwindSafe,
    BlockNumber: RefUnwindSafe,
    CurrencyId: RefUnwindSafe

impl<AccountId, Balance, BlockNumber, CurrencyId> Send for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    AccountId: Send,
    Balance: Send,
    BlockNumber: Send,
    CurrencyId: Send

impl<AccountId, Balance, BlockNumber, CurrencyId> Sync for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    AccountId: Sync,
    Balance: Sync,
    BlockNumber: Sync,
    CurrencyId: Sync

impl<AccountId, Balance, BlockNumber, CurrencyId> Unpin for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    AccountId: Unpin,
    Balance: Unpin,
    BlockNumber: Unpin,
    CurrencyId: Unpin

impl<AccountId, Balance, BlockNumber, CurrencyId> UnwindSafe for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
    AccountId: UnwindSafe,
    Balance: UnwindSafe,
    BlockNumber: UnwindSafe,
    CurrencyId: 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> Clear for T where
    T: Default + Eq + PartialEq<T>, 
[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Hashable for T where
    T: Codec
[src]

impl<T> Instrument 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
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> KeyedVec for T where
    T: Codec
[src]

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

type Output = T

Should always be Self

impl<T> SaturatedConversion for T[src]

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>, 
[src]

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<S> Codec for S where
    S: Decode + Encode
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: ToOwned + Encode
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe
[src]

impl<T> MaybeSerialize for T where
    T: Serialize
[src]

impl<T> MaybeSerializeDeserialize for T where
    T: DeserializeOwned + Serialize
[src]

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

impl<T> Parameter for T where
    T: Codec + EncodeLike<T> + Clone + Eq + Debug
[src]