linera_core/chain_worker/mod.rs
1// Copyright (c) Zefchain Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3
4//! A worker to handle a single chain.
5
6mod actor;
7mod config;
8mod delivery_notifier;
9mod state;
10
11pub(super) use self::delivery_notifier::DeliveryNotifier;
12#[cfg(test)]
13pub(crate) use self::state::CrossChainUpdateHelper;
14pub use self::{
15 actor::{ChainWorkerActor, ChainWorkerRequest},
16 config::ChainWorkerConfig,
17 state::ChainWorkerState,
18};