signet-node 0.17.0

Core Signet rollup node: block processing, state management, and lifecycle orchestration
1
2
3
4
5
6
7
8
/// Items that can be sent via the status channel.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum NodeStatus {
    /// Node is booting.
    Booting,
    /// Node's current height.
    AtHeight(u64),
}