blvm-node 0.1.2

Bitcoin Commons BLVM: Minimal Bitcoin node implementation using blvm-protocol and blvm-consensus
//! Aggregated optional subsystems for Node.
//!
//! Groups related optional components to reduce Node field count and clarify initialization.

use std::sync::Arc;

use crate::module::ModuleManager;
use crate::node::event_publisher::EventPublisher;

/// Module subsystem: registry, manager, and event publisher.
/// All three are initialized together when the module system is enabled.
/// ModuleManager is wrapped in Arc<Mutex<>> for sharing with RPC and other subsystems.
#[derive(Default)]
pub struct ModuleSubsystem {
    pub module_registry: Option<Arc<crate::module::registry::client::ModuleRegistry>>,
    pub module_manager: Option<Arc<tokio::sync::Mutex<ModuleManager>>>,
    pub event_publisher: Option<Arc<EventPublisher>>,
}

/// Payment subsystem: processor, state machine, and reorg handler.
/// Initialized when the payment module is enabled.
#[derive(Default)]
pub struct PaymentSubsystem {
    pub payment_processor: Option<Arc<crate::payment::processor::PaymentProcessor>>,
    pub payment_state_machine: Option<Arc<crate::payment::state_machine::PaymentStateMachine>>,
    #[cfg(feature = "ctv")]
    pub payment_reorg_handler: Option<crate::payment::PaymentReorgHandler>,
}