Struct finality_grandpa::round::Round
source · pub struct Round<Id: Ord + Eq, H: Ord + Eq, N, Signature> { /* private fields */ }
Expand description
Stores data for a round.
Implementations§
source§impl<Id, H, N, Signature> Round<Id, H, N, Signature>
impl<Id, H, N, Signature> Round<Id, H, N, Signature>
sourcepub fn new(round_params: RoundParams<Id, H, N>) -> Self
pub fn new(round_params: RoundParams<Id, H, N>) -> Self
Create a new round accumulator for given round number and with given weight.
sourcepub fn precommit_ghost(&mut self) -> Option<(H, N)>
pub fn precommit_ghost(&mut self) -> Option<(H, N)>
Compute and cache the precommit-GHOST.
sourcepub fn finalizing_precommits<'a, C: 'a + Chain<H, N>>(
&'a mut self,
chain: &'a C,
) -> Option<impl Iterator<Item = SignedPrecommit<H, N, Signature, Id>> + 'a>
pub fn finalizing_precommits<'a, C: 'a + Chain<H, N>>( &'a mut self, chain: &'a C, ) -> Option<impl Iterator<Item = SignedPrecommit<H, N, Signature, Id>> + 'a>
Returns an iterator of all precommits targeting the finalized hash.
Only returns None
if no block has been finalized in this round.
sourcepub fn estimate(&self) -> Option<&(H, N)>
pub fn estimate(&self) -> Option<&(H, N)>
Fetch the “round-estimate”: the best block which might have been finalized in this round.
Returns None
when new new blocks could have been finalized in this round,
according to our estimate.
sourcepub fn completable(&self) -> bool
pub fn completable(&self) -> bool
Returns true
when the round is completable.
This is the case when the round-estimate is an ancestor of the prevote-ghost head, or when they are the same block and none of its children could possibly have enough precommits.
sourcepub fn primary_voter(&self) -> (&Id, &VoterInfo)
pub fn primary_voter(&self) -> (&Id, &VoterInfo)
Return the primary voter of the round.
sourcepub fn prevote_participation(&self) -> (VoteWeight, usize)
pub fn prevote_participation(&self) -> (VoteWeight, usize)
Get the current weight and number of voters who have participated in prevoting.
sourcepub fn precommit_participation(&self) -> (VoteWeight, usize)
pub fn precommit_participation(&self) -> (VoteWeight, usize)
Get the current weight and number of voters who have participated in precommitting.
sourcepub fn precommits(&self) -> Vec<(Id, Precommit<H, N>, Signature)>
pub fn precommits(&self) -> Vec<(Id, Precommit<H, N>, Signature)>
Return all imported precommits.
sourcepub fn historical_votes(&self) -> &HistoricalVotes<H, N, Signature, Id>
pub fn historical_votes(&self) -> &HistoricalVotes<H, N, Signature, Id>
Return all votes for the round (prevotes and precommits), sorted by imported order and indicating the indices where we voted. At most two prevotes and two precommits per voter are present, further equivocations are not stored (as they are redundant).
sourcepub fn set_prevoted_index(&mut self)
pub fn set_prevoted_index(&mut self)
Set the number of prevotes and precommits received at the moment of prevoting. It should be called inmediatly after prevoting.
sourcepub fn set_precommitted_index(&mut self)
pub fn set_precommitted_index(&mut self)
Set the number of prevotes and precommits received at the moment of precommiting. It should be called inmediatly after precommiting.
sourcepub fn prevoted_index(&self) -> Option<u64>
pub fn prevoted_index(&self) -> Option<u64>
Get the number of prevotes and precommits received at the moment of prevoting. Returns None if the prevote wasn’t realized.
sourcepub fn precommitted_index(&self) -> Option<u64>
pub fn precommitted_index(&self) -> Option<u64>
Get the number of prevotes and precommits received at the moment of precommiting. Returns None if the precommit wasn’t realized.
Auto Trait Implementations§
impl<Id, H, N, Signature> Freeze for Round<Id, H, N, Signature>
impl<Id, H, N, Signature> RefUnwindSafe for Round<Id, H, N, Signature>
impl<Id, H, N, Signature> Send for Round<Id, H, N, Signature>
impl<Id, H, N, Signature> Sync for Round<Id, H, N, Signature>
impl<Id, H, N, Signature> Unpin for Round<Id, H, N, Signature>
impl<Id, H, N, Signature> UnwindSafe for Round<Id, H, N, Signature>where
H: UnwindSafe + RefUnwindSafe,
N: UnwindSafe + RefUnwindSafe,
Id: RefUnwindSafe + UnwindSafe,
Signature: RefUnwindSafe + UnwindSafe,
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> FmtForward for T
impl<T> FmtForward for T
source§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.source§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.source§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.source§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.source§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.source§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.source§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.source§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.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 moresource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
source§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 moresource§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 moresource§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
source§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
source§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.source§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.source§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.source§impl<T> Tap for T
impl<T> Tap for T
source§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 moresource§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 moresource§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 moresource§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 moresource§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 moresource§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 moresource§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.source§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.source§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.source§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.source§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.source§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.source§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.