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]
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]
&mut self,
now: BlockNumber,
decay: Balance
) -> DispatchResult
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: Clone, Balance: Clone, BlockNumber: Clone, CurrencyId: Clone> Clone for ProposalState<AccountId, Balance, BlockNumber, CurrencyId>
[src]fn clone(&self) -> ProposalState<AccountId, Balance, BlockNumber, CurrencyId>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[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> 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, 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<AccountId: Default, Balance: Default, BlockNumber: Default, CurrencyId: Default> Default for ProposalState<AccountId, Balance, BlockNumber, CurrencyId>
[src]fn default() -> 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<'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]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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, 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]fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
pub fn size_hint(&self) -> usize
[src]
pub fn encode(&self) -> Vec<u8, Global>
[src]
pub fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
[src]
F: FnOnce(&[u8]) -> R,
pub fn encoded_size(&self) -> usize
[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: PartialEq, Balance: PartialEq, BlockNumber: PartialEq, CurrencyId: PartialEq> PartialEq<ProposalState<AccountId, Balance, BlockNumber, CurrencyId>> for ProposalState<AccountId, Balance, BlockNumber, CurrencyId>
[src]fn eq(
&self,
other: &ProposalState<AccountId, Balance, BlockNumber, CurrencyId>
) -> bool
[src]
&self,
other: &ProposalState<AccountId, Balance, BlockNumber, CurrencyId>
) -> bool
fn ne(
&self,
other: &ProposalState<AccountId, Balance, BlockNumber, CurrencyId>
) -> bool
[src]
&self,
other: &ProposalState<AccountId, Balance, BlockNumber, CurrencyId>
) -> bool
impl<AccountId, Balance, BlockNumber, CurrencyId> Serialize for ProposalState<AccountId, Balance, BlockNumber, CurrencyId> where
AccountId: Serialize,
Balance: Serialize,
BlockNumber: Serialize,
CurrencyId: Serialize,
[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]
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.
fn module_prefix() -> &'static [u8]
[src]
fn storage_prefix() -> &'static [u8]
[src]
fn from_optional_value_to_query(
v: Option<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>>
) -> Self::Query
[src]
v: Option<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>>
) -> Self::Query
fn from_query_to_optional_value(
v: Self::Query
) -> Option<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>>
[src]
v: Self::Query
) -> Option<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>>
pub fn prefix_hash() -> Vec<u8, Global>
[src]
pub fn storage_map_final_key<KeyArg>(key: KeyArg) -> Vec<u8, Global> where
KeyArg: EncodeLike<K>,
[src]
KeyArg: EncodeLike<K>,
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<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]fn module_prefix() -> &'static [u8]
[src]
fn storage_prefix() -> &'static [u8]
[src]
pub fn final_prefix() -> [u8; 32]
[src]
pub fn remove_all()
[src]
pub fn iter_values() -> PrefixIterator<Value>
[src]
pub fn translate_values<OldValue, F>(f: F) where
F: FnMut(OldValue) -> Option<Value>,
OldValue: Decode,
[src]
F: FnMut(OldValue) -> Option<Value>,
OldValue: Decode,
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]
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,
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,
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,
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,
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,
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,
AccountId: UnwindSafe,
Balance: UnwindSafe,
BlockNumber: UnwindSafe,
CurrencyId: UnwindSafe,
Blanket Implementations
impl<T> CheckedConversion for T
[src]
impl<T> CheckedConversion for T
[src]pub fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
[src]
Self: TryFrom<T>,
pub fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
[src]
Self: TryInto<T>,
impl<T> DecodeLimit for T where
T: Decode,
[src]
impl<T> DecodeLimit for T where
T: Decode,
[src]impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> Hashable for T where
T: Codec,
[src]
impl<T> Hashable for T where
T: Codec,
[src]pub fn blake2_128(&self) -> [u8; 16]
[src]
pub fn blake2_256(&self) -> [u8; 32]
[src]
pub fn blake2_128_concat(&self) -> Vec<u8, Global>
[src]
pub fn twox_128(&self) -> [u8; 16]
[src]
pub fn twox_256(&self) -> [u8; 32]
[src]
pub fn twox_64_concat(&self) -> Vec<u8, Global>
[src]
pub fn identity(&self) -> Vec<u8, Global>
[src]
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<T> SaturatedConversion for T
[src]
impl<T> SaturatedConversion for T
[src]pub fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]pub fn unique_saturated_into(self) -> T
[src]
impl<S> Codec for S where
S: Decode + Encode,
[src]
S: Decode + Encode,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Box<T, Global>> for T where
T: Encode,
[src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: ToOwned + Encode,
[src]
T: ToOwned + Encode,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<S> FullCodec for S where
S: Decode + FullEncode,
[src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>,
[src]
S: Encode + EncodeLike<S>,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,
impl<T> MaybeSerialize for T where
T: Serialize,
[src]
T: Serialize,
impl<T> MaybeSerializeDeserialize for T where
T: DeserializeOwned + Serialize,
[src]
T: DeserializeOwned + Serialize,
impl<T> Member for T where
T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone,
[src]
T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone,
impl<T> Parameter for T where
T: Codec + EncodeLike<T> + Clone + Eq + Debug,
[src]
T: Codec + EncodeLike<T> + Clone + Eq + Debug,