linera-core 0.15.17

The core Linera protocol, including client and server logic, node synchronization, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

//! A worker to handle a single chain.

mod config;
mod delivery_notifier;
pub(crate) mod handle;
pub(crate) mod state;

pub use self::config::ChainWorkerConfig;
pub(super) use self::delivery_notifier::DeliveryNotifier;
#[cfg(test)]
pub(crate) use self::state::CrossChainUpdateHelper;
pub(crate) use self::state::{BlockOutcome, CrossChainUpdateResult, EventSubscriptionsResult};