pub struct Join {
pub node_id: u16,
pub committed_round: u64,
pub meta: ActionMeta,
}Expand description
WarmJoin protocol: a validator announces it has caught up and is ready to vote.
System-internal transaction (like Beacon). Not a user order. Authentication is via the BulkTransaction signer — verified against the preconfigured validator pubkey map before consensus processes the join.
committed_round is the node’s last committed round at emission time.
Re-emitted join TXs naturally hash differently, preventing dedup stalls.
Fields§
§node_id: u16§committed_round: u64§meta: ActionMetaTrait Implementations§
Source§impl<'de> Deserialize<'de> for Join
impl<'de> Deserialize<'de> for Join
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Join
impl RefUnwindSafe for Join
impl Send for Join
impl Sync for Join
impl Unpin for Join
impl UnsafeUnpin for Join
impl UnwindSafe for Join
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
Mutably borrows from an owned value. Read more