Skip to main content

Node

Struct Node 

Source
pub struct Node {
    pub probe: Probe,
    pub validators: Vec<Validator>,
    pub chain: Chain,
    pub mempool: Mempool,
    pub max_block_txs: usize,
    pub live_beacon: Option<String>,
}
Expand description

A network participant.

Fields§

§probe: Probe

This node’s post-quantum identity.

§validators: Vec<Validator>

The validator set (shared, agreed configuration).

§chain: Chain

This node’s view of the chain.

§mempool: Mempool

Pending transactions.

§max_block_txs: usize

Max transactions per block.

§live_beacon: Option<String>

A live beacon value fetched externally for the current round, if any (see entropa_core::beacon::sample_live). Set this once per round before calling is_proposer/try_produce so both see the identical value — fetching live separately in each would risk straddling a beacon update between the two calls. None falls back to the deterministic beacon::sample(round).

Implementations§

Source§

impl Node

Source

pub fn new(probe: Probe, validators: Vec<Validator>) -> Self

Source

pub fn submit(&mut self, tx: Transaction)

Submit a transaction into this node’s mempool.

Source

pub fn is_proposer(&self, round: u64) -> bool

Am I the beacon-selected proposer for round?

Source

pub fn try_produce(&mut self, round: u64, timestamp: u64) -> Option<Block>

If this node is the beacon-selected proposer for round, drain the mempool, produce and append the next block, and return it for broadcast. Otherwise None.

Source

pub fn accept(&mut self, block: Block) -> Result<(), NodeError>

Accept a peer’s block: enforce the consensus rule (correct proposer for the block’s beacon), then full structural + post-quantum validation.

Source

pub fn height(&self) -> usize

Auto Trait Implementations§

§

impl Freeze for Node

§

impl RefUnwindSafe for Node

§

impl Send for Node

§

impl Sync for Node

§

impl Unpin for Node

§

impl UnsafeUnpin for Node

§

impl UnwindSafe for Node

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> 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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + 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: Sized + 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<T> Same for T

Source§

type Output = T

Should always be Self
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<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