PendingBlock

Struct PendingBlock 

Source
pub struct PendingBlock<N: Network>(/* private fields */);
Expand description

Wrapper for a block that has a valid subDAG, but where the block header, solutions, and transmissions have not been verified yet.

This type is created by Ledger::check_block_subdag and consumed by Ledger::check_block_content.

Methods from Deref<Target = Block<N>>§

Source

pub const NUM_GENESIS_TRANSACTIONS: usize = 4usize

Source

pub fn is_genesis(&self) -> bool

Returns true if the block is a genesis block.

Source

pub fn verify( &self, previous_block: &Block<N>, current_state_root: <N as Network>::StateRoot, previous_committee_lookback: &Committee<N>, current_committee_lookback: &Committee<N>, current_puzzle: &Puzzle<N>, current_epoch_hash: <N as Network>::BlockHash, current_timestamp: i64, ratified_finalize_operations: Vec<FinalizeOperation<N>>, ) -> Result<(Vec<SolutionID<N>>, Vec<<N as Network>::TransactionID>), Error>

Ensures the block is correct.

Source

pub fn hash(&self) -> <N as Network>::BlockHash

Returns the block hash.

Source

pub fn previous_hash(&self) -> <N as Network>::BlockHash

Returns the previous block hash.

Source

pub fn authority(&self) -> &Authority<N>

Returns the authority.

Source

pub fn ratifications(&self) -> &Ratifications<N>

Returns the ratifications in this block.

Source

pub fn solutions(&self) -> &Solutions<N>

Returns the solutions in the block.

Source

pub fn aborted_solution_ids(&self) -> &Vec<SolutionID<N>>

Returns the aborted solution IDs in this block.

Source

pub fn transactions(&self) -> &Transactions<N>

Returns the transactions in this block.

Source

pub fn aborted_transaction_ids(&self) -> &Vec<<N as Network>::TransactionID>

Returns the aborted transaction IDs in this block.

Source

pub fn header(&self) -> &Header<N>

Returns the block header.

Source

pub fn previous_state_root(&self) -> <N as Network>::StateRoot

Returns the previous state root from the block header.

Source

pub fn transactions_root(&self) -> Field<N>

Returns the transactions root in the block header.

Source

pub fn finalize_root(&self) -> Field<N>

Returns the finalize root in the block header.

Source

pub fn ratifications_root(&self) -> Field<N>

Returns the ratifications root in the block header.

Source

pub fn solutions_root(&self) -> Field<N>

Returns the solutions root in the block header.

Source

pub fn metadata(&self) -> &Metadata<N>

Returns the metadata in the block header.

Source

pub fn network(&self) -> u16

Returns the network ID of this block.

Source

pub fn height(&self) -> u32

Returns the height of this block.

Source

pub fn round(&self) -> u64

Returns the round number of this block.

Source

pub fn epoch_number(&self) -> u32

Returns the epoch number of this block.

Source

pub fn cumulative_weight(&self) -> u128

Returns the cumulative weight for this block.

Source

pub fn cumulative_proof_target(&self) -> u128

Returns the cumulative proof target for this block.

Source

pub fn coinbase_target(&self) -> u64

Returns the coinbase target for this block.

Source

pub fn proof_target(&self) -> u64

Returns the proof target for this block.

Source

pub fn last_coinbase_target(&self) -> u64

Returns the coinbase target of the last coinbase.

Source

pub fn last_coinbase_timestamp(&self) -> i64

Returns the block timestamp of the last coinbase.

Source

pub fn timestamp(&self) -> i64

Returns the Unix timestamp (UTC) for this block.

Source

pub fn contains_transition( &self, transition_id: &<N as Network>::TransitionID, ) -> bool

Returns true if the block contains the given transition ID.

Source

pub fn contains_serial_number(&self, serial_number: &Field<N>) -> bool

Returns true if the block contains the given serial number.

Source

pub fn contains_commitment(&self, commitment: &Field<N>) -> bool

Returns true if the block contains the given commitment.

Source

pub fn get_solution(&self, solution_id: &SolutionID<N>) -> Option<&Solution<N>>

Returns the solution with the given solution ID, if it exists.

Source

pub fn get_transaction( &self, transaction_id: &<N as Network>::TransactionID, ) -> Option<&Transaction<N>>

Returns the transaction with the given transaction ID, if it exists.

Source

pub fn get_confirmed_transaction( &self, transaction_id: &<N as Network>::TransactionID, ) -> Option<&ConfirmedTransaction<N>>

Returns the confirmed transaction with the given transaction ID, if it exists.

Source

pub fn find_transaction_for_transition_id( &self, transition_id: &<N as Network>::TransitionID, ) -> Option<&Transaction<N>>

Returns the transaction with the given transition ID, if it exists.

Source

pub fn find_transaction_for_serial_number( &self, serial_number: &Field<N>, ) -> Option<&Transaction<N>>

Returns the transaction with the given serial number, if it exists.

Source

pub fn find_transaction_for_commitment( &self, commitment: &Field<N>, ) -> Option<&Transaction<N>>

Returns the transaction with the given commitment, if it exists.

Source

pub fn find_transition( &self, transition_id: &<N as Network>::TransitionID, ) -> Option<&Transition<N>>

Returns the transition with the corresponding transition ID, if it exists.

Source

pub fn find_transition_for_serial_number( &self, serial_number: &Field<N>, ) -> Option<&Transition<N>>

Returns the transition for the given serial number, if it exists.

Source

pub fn find_transition_for_commitment( &self, commitment: &Field<N>, ) -> Option<&Transition<N>>

Returns the transition for the given commitment, if it exists.

Source

pub fn find_record( &self, commitment: &Field<N>, ) -> Option<&Record<N, Ciphertext<N>>>

Returns the record with the corresponding commitment, if it exists.

Source

pub fn solution_ids(&self) -> Option<impl Iterator<Item = &SolutionID<N>>>

Returns an iterator over the solution IDs in this block.

Source

pub fn transaction_ids( &self, ) -> impl Iterator<Item = &<N as Network>::TransactionID>

Returns an iterator over the transaction IDs, for all transactions in self.

Source

pub fn deployments(&self) -> impl Iterator<Item = &ConfirmedTransaction<N>>

Returns an iterator over all transactions in self that are accepted deploy transactions.

Source

pub fn executions(&self) -> impl Iterator<Item = &ConfirmedTransaction<N>>

Returns an iterator over all transactions in self that are accepted execute transactions.

Source

pub fn transitions(&self) -> impl Iterator<Item = &Transition<N>>

Returns an iterator over all transitions.

Source

pub fn transition_ids( &self, ) -> impl Iterator<Item = &<N as Network>::TransitionID>

Returns an iterator over the transition IDs, for all transitions.

Source

pub fn transition_public_keys(&self) -> impl Iterator<Item = &Group<N>>

Returns an iterator over the transition public keys, for all transactions.

Source

pub fn transition_commitments(&self) -> impl Iterator<Item = &Field<N>>

Returns an iterator over the transition commitments, for all transactions.

Source

pub fn tags(&self) -> impl Iterator<Item = &Field<N>>

Returns an iterator over the tags, for all transition inputs that are records.

Source

pub fn input_ids(&self) -> impl Iterator<Item = &Field<N>>

Returns an iterator over the input IDs, for all transition inputs that are records.

Source

pub fn serial_numbers(&self) -> impl Iterator<Item = &Field<N>>

Returns an iterator over the serial numbers, for all transition inputs that are records.

Source

pub fn output_ids(&self) -> impl Iterator<Item = &Field<N>>

Returns an iterator over the output IDs, for all transition inputs that are records.

Source

pub fn commitments(&self) -> impl Iterator<Item = &Field<N>>

Returns an iterator over the commitments, for all transition outputs that are records.

Source

pub fn records( &self, ) -> impl Iterator<Item = (&Field<N>, &Record<N, Ciphertext<N>>)>

Returns an iterator over the records, for all transition outputs that are records.

Source

pub fn nonces(&self) -> impl Iterator<Item = &Group<N>>

Returns an iterator over the nonces, for all transition outputs that are records.

Source

pub fn transaction_fee_amounts( &self, ) -> impl Iterator<Item = Result<Integer<N, u64>, Error>>

Returns an iterator over the transaction fee amounts, for all transactions.

Trait Implementations§

Source§

impl<N: Clone + Network> Clone for PendingBlock<N>

Source§

fn clone(&self) -> PendingBlock<N>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<N: Network> Deref for PendingBlock<N>

Source§

type Target = Block<N>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Block<N>

Dereferences the value.
Source§

impl<N: PartialEq + Network> PartialEq for PendingBlock<N>

Source§

fn eq(&self, other: &PendingBlock<N>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<N: Eq + Network> Eq for PendingBlock<N>

Source§

impl<N: Network> StructuralPartialEq for PendingBlock<N>

Auto Trait Implementations§

§

impl<N> Freeze for PendingBlock<N>

§

impl<N> RefUnwindSafe for PendingBlock<N>

§

impl<N> Send for PendingBlock<N>

§

impl<N> Sync for PendingBlock<N>

§

impl<N> Unpin for PendingBlock<N>

§

impl<N> UnwindSafe for PendingBlock<N>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,