Struct finality_grandpa::round::Round
source · [−]Expand description
Stores data for a round.
Implementations
sourceimpl<Id, H, N, Signature> Round<Id, H, N, Signature> where
Id: Ord + Clone + Eq + Debug,
H: Ord + Clone + Eq + Debug,
N: Copy + Debug + BlockNumberOps,
Signature: Eq + Clone,
impl<Id, H, N, Signature> Round<Id, H, N, Signature> where
Id: Ord + Clone + Eq + Debug,
H: Ord + Clone + Eq + Debug,
N: Copy + Debug + BlockNumberOps,
Signature: Eq + Clone,
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 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> RefUnwindSafe for Round<Id, H, N, Signature> where
H: RefUnwindSafe,
Id: RefUnwindSafe,
N: RefUnwindSafe,
Signature: RefUnwindSafe,
impl<Id, H, N, Signature> Send for Round<Id, H, N, Signature> where
H: Send,
Id: Send,
N: Send,
Signature: Send,
impl<Id, H, N, Signature> Sync for Round<Id, H, N, Signature> where
H: Sync,
Id: Sync,
N: Sync,
Signature: Sync,
impl<Id, H, N, Signature> Unpin for Round<Id, H, N, Signature> where
H: Unpin,
Id: Unpin,
N: Unpin,
impl<Id, H, N, Signature> UnwindSafe for Round<Id, H, N, Signature> where
H: UnwindSafe + RefUnwindSafe,
Id: UnwindSafe + RefUnwindSafe,
N: UnwindSafe + RefUnwindSafe,
Signature: UnwindSafe + RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more