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 config;
7mod delivery_notifier;
8pub(crate) mod handle;
9pub(crate) mod state;
10
11pub use self::config::ChainWorkerConfig;
12pub(super) use self::delivery_notifier::DeliveryNotifier;
13#[cfg(test)]
14pub(crate) use self::state::CrossChainUpdateHelper;
15pub(crate) use self::state::{BlockOutcome, EventSubscriptionsResult};