Type Alias round_based::state_machine::MpcParty

source ·
pub type MpcParty<M> = MpcParty<M, Delivery<M>, Runtime<M>>;
Available on crate feature state-machine only.
Expand description

MpcParty instantiated with state machine implementation of delivery and async runtime

Aliased Type§

struct MpcParty<M> {
    pub delivery: (Incomings<M>, Outgoings<M>),
    pub runtime: Runtime<M>,
    /* private fields */
}

Fields§

§delivery: (Incomings<M>, Outgoings<M>)

Defines transport layer

§runtime: Runtime<M>

Defines how computationally heavy tasks should be handled