Struct hotshot_stake_table::vec_based::StakeTable
source · pub struct StakeTable<K1, K2, F>where
K1: Eq + Hash + Clone + ToFields<F>,
K2: Eq + Hash + Clone + Default + ToFields<F>,
F: RescueParameter,{
capacity: usize,
head: StakeTableSnapshot<K1, K2>,
epoch_start: StakeTableSnapshot<K1, K2>,
last_epoch_start: StakeTableSnapshot<K1, K2>,
head_total_stake: U256,
epoch_start_total_stake: U256,
last_epoch_start_total_stake: U256,
epoch_start_comm: (F, F, F),
last_epoch_start_comm: (F, F, F),
bls_mapping: HashMap<K1, usize>,
}
Expand description
Locally maintained stake table, generic over public key type K
.
Whose commitment is a rescue hash of all key-value pairs over field F
.
NOTE: the commitment is only available for the finalized versions, and is
computed only once when it’s finalized.
Fields§
§capacity: usize
upper bound on table size
head: StakeTableSnapshot<K1, K2>
The most up-to-date stake table, where the incoming transactions shall be performed on.
epoch_start: StakeTableSnapshot<K1, K2>
The snapshot of stake table at the beginning of the current epoch
last_epoch_start: StakeTableSnapshot<K1, K2>
The stake table used for leader election.
head_total_stake: U256
Total stakes in the most update-to-date stake table
epoch_start_total_stake: U256
Total stakes in the snapshot version EpochStart
last_epoch_start_total_stake: U256
Total stakes in the snapshot version LastEpochStart
epoch_start_comm: (F, F, F)
Commitment of the stake table snapshot version EpochStart
We only support committing the finalized versions.
Commitment for a finalized version is a triple where
- First item is the rescue hash of the bls keys
- Second item is the rescue hash of the Schnorr keys
- Third item is the rescue hash of all the stake amounts
last_epoch_start_comm: (F, F, F)
Commitment of the stake table snapshot version LastEpochStart
bls_mapping: HashMap<K1, usize>
The mapping from public keys to their location in the Merkle tree.
Implementations§
source§impl<K1, K2, F> StakeTable<K1, K2, F>
impl<K1, K2, F> StakeTable<K1, K2, F>
sourcepub fn advance(&mut self)
pub fn advance(&mut self)
Update the stake table when the epoch number advances, should be manually called.
sourcepub fn set_value(
&mut self,
key: &K1,
value: U256,
) -> Result<U256, StakeTableError>
pub fn set_value( &mut self, key: &K1, value: U256, ) -> Result<U256, StakeTableError>
Set the stake withheld by key
to be value
.
Return the previous stake if succeed.
§Errors
Errors if key is not in the stake table
sourcefn compute_head_comm(&mut self) -> (F, F, F)
fn compute_head_comm(&mut self) -> (F, F, F)
Helper function to recompute the stake table commitment for head version
Commitment of a stake table is a triple (bls_keys_comm, schnorr_keys_comm, stake_amount_comm)
TODO(Chengyu): The BLS verification keys doesn’t implement Default. Thus we directly pad with F::default()
.
sourcefn lookup_pos(&self, key: &K1) -> Result<usize, StakeTableError>
fn lookup_pos(&self, key: &K1) -> Result<usize, StakeTableError>
Return the index of a given key. Err if the key doesn’t exists
sourcefn version(
&self,
version: &SnapshotVersion,
) -> Result<&StakeTableSnapshot<K1, K2>, StakeTableError>
fn version( &self, version: &SnapshotVersion, ) -> Result<&StakeTableSnapshot<K1, K2>, StakeTableError>
returns the snapshot version
Trait Implementations§
source§impl<K1, K2, F> Clone for StakeTable<K1, K2, F>
impl<K1, K2, F> Clone for StakeTable<K1, K2, F>
source§fn clone(&self) -> StakeTable<K1, K2, F>
fn clone(&self) -> StakeTable<K1, K2, F>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<K1, K2, F> Debug for StakeTable<K1, K2, F>
impl<K1, K2, F> Debug for StakeTable<K1, K2, F>
source§impl<K1, K2, F> Default for StakeTable<K1, K2, F>
impl<K1, K2, F> Default for StakeTable<K1, K2, F>
source§impl<'de, K1, K2, F> Deserialize<'de> for StakeTable<K1, K2, F>where
K1: Eq + Hash + Clone + ToFields<F> + Deserialize<'de> + Default,
K2: Eq + Hash + Clone + Default + ToFields<F> + Deserialize<'de>,
F: RescueParameter + Deserialize<'de>,
impl<'de, K1, K2, F> Deserialize<'de> for StakeTable<K1, K2, F>where
K1: Eq + Hash + Clone + ToFields<F> + Deserialize<'de> + Default,
K2: Eq + Hash + Clone + Default + ToFields<F> + Deserialize<'de>,
F: RescueParameter + Deserialize<'de>,
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>,
source§impl<K1, K2, F> PartialEq for StakeTable<K1, K2, F>
impl<K1, K2, F> PartialEq for StakeTable<K1, K2, F>
source§impl<K1, K2, F> Serialize for StakeTable<K1, K2, F>
impl<K1, K2, F> Serialize for StakeTable<K1, K2, F>
source§impl<K1, K2, F> StakeTableScheme for StakeTable<K1, K2, F>
impl<K1, K2, F> StakeTableScheme for StakeTable<K1, K2, F>
source§type Commitment = (F, F, F)
type Commitment = (F, F, F)
source§type LookupProof = ()
type LookupProof = ()
source§type IntoIter = <Vec<(K1, U256, K2)> as IntoIterator>::IntoIter
type IntoIter = <Vec<(K1, U256, K2)> as IntoIterator>::IntoIter
source§fn register(
&mut self,
new_key: Self::Key,
amount: Self::Amount,
aux: Self::Aux,
) -> Result<(), StakeTableError>
fn register( &mut self, new_key: Self::Key, amount: Self::Amount, aux: Self::Aux, ) -> Result<(), StakeTableError>
source§fn deregister(
&mut self,
existing_key: &Self::Key,
) -> Result<(), StakeTableError>
fn deregister( &mut self, existing_key: &Self::Key, ) -> Result<(), StakeTableError>
source§fn commitment(
&self,
version: SnapshotVersion,
) -> Result<Self::Commitment, StakeTableError>
fn commitment( &self, version: SnapshotVersion, ) -> Result<Self::Commitment, StakeTableError>
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>
version
of stake table. Read moresource§fn len(&self, version: SnapshotVersion) -> Result<usize, StakeTableError>
fn len(&self, version: SnapshotVersion) -> Result<usize, StakeTableError>
version
of the table. Read moresource§fn contains_key(&self, key: &Self::Key) -> bool
fn contains_key(&self, key: &Self::Key) -> bool
key
is currently registered, else returns false.source§fn lookup(
&self,
version: SnapshotVersion,
key: &Self::Key,
) -> Result<Self::Amount, StakeTableError>
fn lookup( &self, version: SnapshotVersion, key: &Self::Key, ) -> Result<Self::Amount, StakeTableError>
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>
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>
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>
key
with (negative ? -1 : 1) * delta
.
Return the updated stake or error. Read moresource§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)>
rng
, this sampling should be deterministic.source§fn try_iter(
&self,
version: SnapshotVersion,
) -> Result<Self::IntoIter, StakeTableError>
fn try_iter( &self, version: SnapshotVersion, ) -> Result<Self::IntoIter, StakeTableError>
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>,
§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,
§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>
keys
. Read documentation about
[Self::update()
]. By default, we call Self::update()
on each
(key, amount, negative) tuple. Read moreimpl<K1, K2, F> Eq for StakeTable<K1, K2, F>
impl<K1, K2, F> StructuralPartialEq for StakeTable<K1, K2, F>
Auto Trait Implementations§
impl<K1, K2, F> Freeze for StakeTable<K1, K2, F>where
F: Freeze,
impl<K1, K2, F> RefUnwindSafe for StakeTable<K1, K2, F>
impl<K1, K2, F> Send for StakeTable<K1, K2, F>
impl<K1, K2, F> Sync for StakeTable<K1, K2, F>
impl<K1, K2, F> Unpin for StakeTable<K1, K2, F>
impl<K1, K2, F> UnwindSafe for StakeTable<K1, K2, F>
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
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)
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
§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
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,
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,
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,
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,
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,
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,
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,
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,
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,
§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>
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>
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,
§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,
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,
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
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
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
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
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
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
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
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
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
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
.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
.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
.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
.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
.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
.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
.tap_deref()
only in debug builds, and is erased in release
builds.