Struct hotshot_stake_table::mt_based::StakeTable
source · pub struct StakeTable<K: Key> {
head: Arc<PersistentMerkleNode<K>>,
epoch_start: Arc<PersistentMerkleNode<K>>,
last_epoch_start: Arc<PersistentMerkleNode<K>>,
height: usize,
mapping: HashMap<K, usize>,
}
Expand description
Locally maintained stake table, generic over public key type K
.
Fields§
§head: Arc<PersistentMerkleNode<K>>
The most up-to-date stake table, where the incoming transactions shall be performed on.
epoch_start: Arc<PersistentMerkleNode<K>>
The snapshot of stake table at the beginning of the current epoch
last_epoch_start: Arc<PersistentMerkleNode<K>>
The stake table used for leader election.
height: usize
Height of the underlying merkle tree, determines the capacity.
The capacity is TREE_BRANCH.pow(height)
.
mapping: HashMap<K, usize>
The mapping from public keys to their location in the Merkle tree.
Implementations§
source§impl<K: Key> StakeTable<K>
impl<K: Key> StakeTable<K>
sourcepub fn new(height: usize) -> Self
pub fn new(height: usize) -> Self
Initiating an empty stake table.
Overall capacity is TREE_BRANCH.pow(height)
.
sourcefn root(
&self,
version: &SnapshotVersion,
) -> Result<Arc<PersistentMerkleNode<K>>, StakeTableError>
fn root( &self, version: &SnapshotVersion, ) -> Result<Arc<PersistentMerkleNode<K>>, StakeTableError>
returns the root of stake table at version
Trait Implementations§
source§impl<K: Clone + Key> Clone for StakeTable<K>
impl<K: Clone + Key> Clone for StakeTable<K>
source§fn clone(&self) -> StakeTable<K>
fn clone(&self) -> StakeTable<K>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'de, K> Deserialize<'de> for StakeTable<K>where
K: Key,
impl<'de, K> Deserialize<'de> for StakeTable<K>where
K: Key,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<K> Serialize for StakeTable<K>where
K: Key,
impl<K> Serialize for StakeTable<K>where
K: Key,
source§impl<K: Key> StakeTableScheme for StakeTable<K>
impl<K: Key> StakeTableScheme for StakeTable<K>
source§fn sample(
&self,
rng: &mut (impl SeedableRng + CryptoRngCore),
) -> Option<(&Self::Key, &Self::Amount)>
fn sample( &self, rng: &mut (impl SeedableRng + CryptoRngCore), ) -> Option<(&Self::Key, &Self::Amount)>
Almost uniformly samples a key weighted by its stake from the
last_epoch_start
stake table
source§type Commitment = MerkleCommitment
type Commitment = MerkleCommitment
type for the commitment to the current stake table
source§type LookupProof = MerkleProof<K>
type LookupProof = MerkleProof<K>
type for the proof associated with the lookup result (if any)
source§fn register(
&mut self,
new_key: Self::Key,
amount: Self::Amount,
(): Self::Aux,
) -> Result<(), StakeTableError>
fn register( &mut self, new_key: Self::Key, amount: Self::Amount, (): Self::Aux, ) -> Result<(), StakeTableError>
Register a new key into the stake table. Read more
source§fn deregister(
&mut self,
_existing_key: &Self::Key,
) -> Result<(), StakeTableError>
fn deregister( &mut self, _existing_key: &Self::Key, ) -> Result<(), StakeTableError>
Deregister an existing key from the stake table.
Returns error if some keys are not found. Read more
source§fn commitment(
&self,
version: SnapshotVersion,
) -> Result<Self::Commitment, StakeTableError>
fn commitment( &self, version: SnapshotVersion, ) -> Result<Self::Commitment, StakeTableError>
Returns the commitment to the
version
of stake table. Read moresource§fn total_stake(
&self,
version: SnapshotVersion,
) -> Result<Self::Amount, StakeTableError>
fn total_stake( &self, version: SnapshotVersion, ) -> Result<Self::Amount, StakeTableError>
Returns the accumulated stakes of all registered keys of the
version
of stake table. Read moresource§fn len(&self, version: SnapshotVersion) -> Result<usize, StakeTableError>
fn len(&self, version: SnapshotVersion) -> Result<usize, StakeTableError>
Returns the number of keys in the
version
of the table. Read moresource§fn contains_key(&self, key: &Self::Key) -> bool
fn contains_key(&self, key: &Self::Key) -> bool
Returns true if
key
is currently registered, else returns false.source§fn lookup(
&self,
version: SnapshotVersion,
key: &K,
) -> Result<Self::Amount, StakeTableError>
fn lookup( &self, version: SnapshotVersion, key: &K, ) -> Result<Self::Amount, StakeTableError>
Returns the stakes withhelded by a public key. Read more
source§fn lookup_with_proof(
&self,
version: SnapshotVersion,
key: &Self::Key,
) -> Result<(Self::Amount, Self::LookupProof), StakeTableError>
fn lookup_with_proof( &self, version: SnapshotVersion, key: &Self::Key, ) -> Result<(Self::Amount, Self::LookupProof), StakeTableError>
Returns the stakes withhelded by a public key along with a membership proof. Read more
source§fn lookup_with_aux_and_proof(
&self,
version: SnapshotVersion,
key: &Self::Key,
) -> Result<(Self::Amount, Self::Aux, Self::LookupProof), StakeTableError>
fn lookup_with_aux_and_proof( &self, version: SnapshotVersion, key: &Self::Key, ) -> Result<(Self::Amount, Self::Aux, Self::LookupProof), StakeTableError>
Return the associated stake amount and auxiliary information of a public key,
along with a membership proof. Read more
source§fn update(
&mut self,
key: &Self::Key,
delta: Self::Amount,
negative: bool,
) -> Result<Self::Amount, StakeTableError>
fn update( &mut self, key: &Self::Key, delta: Self::Amount, negative: bool, ) -> Result<Self::Amount, StakeTableError>
Update the stake of the
key
with (negative ? -1 : 1) * delta
.
Return the updated stake or error. Read moresource§fn try_iter(
&self,
version: SnapshotVersion,
) -> Result<Self::IntoIter, StakeTableError>
fn try_iter( &self, version: SnapshotVersion, ) -> Result<Self::IntoIter, StakeTableError>
Returns an iterator over all (key, value) entries of the
version
of the table Read more§fn batch_register<I, J, K>(
&mut self,
new_keys: I,
amounts: J,
auxs: K,
) -> Result<(), StakeTableError>where
I: IntoIterator<Item = Self::Key>,
J: IntoIterator<Item = Self::Amount>,
K: IntoIterator<Item = Self::Aux>,
fn batch_register<I, J, K>(
&mut self,
new_keys: I,
amounts: J,
auxs: K,
) -> Result<(), StakeTableError>where
I: IntoIterator<Item = Self::Key>,
J: IntoIterator<Item = Self::Amount>,
K: IntoIterator<Item = Self::Aux>,
Batch register a list of new keys. A default implementation is provided
w/o batch optimization. Read more
§fn batch_deregister<'a, I>(
&mut self,
existing_keys: I,
) -> Result<(), StakeTableError>where
I: IntoIterator<Item = &'a Self::Key>,
Self::Key: 'a,
fn batch_deregister<'a, I>(
&mut self,
existing_keys: I,
) -> Result<(), StakeTableError>where
I: IntoIterator<Item = &'a Self::Key>,
Self::Key: 'a,
Batch deregister a list of keys. A default implementation is provided
w/o batch optimization. Read more
§fn batch_update(
&mut self,
keys: &[Self::Key],
amounts: &[Self::Amount],
negative_flags: Vec<bool>,
) -> Result<Vec<Self::Amount>, StakeTableError>
fn batch_update( &mut self, keys: &[Self::Key], amounts: &[Self::Amount], negative_flags: Vec<bool>, ) -> Result<Vec<Self::Amount>, StakeTableError>
Batch update the stake balance of
keys
. Read documentation about
[Self::update()
]. By default, we call Self::update()
on each
(key, amount, negative) tuple. Read moreimpl<K: Eq + Key> Eq for StakeTable<K>
impl<K: Key> StructuralPartialEq for StakeTable<K>
Auto Trait Implementations§
impl<K> Freeze for StakeTable<K>
impl<K> RefUnwindSafe for StakeTable<K>where
K: RefUnwindSafe,
impl<K> Send for StakeTable<K>where
K: Send,
impl<K> Sync for StakeTable<K>where
K: Send,
impl<K> Unpin for StakeTable<K>where
K: Unpin,
impl<K> UnwindSafe for StakeTable<K>where
K: UnwindSafe + RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Conv for T
impl<T> Conv for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
Formats each item in a sequence. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.