signet-cold 0.7.2

Append-only cold storage for historical blockchain data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Cold storage task and handles.
//!
//! This module provides the task-based architecture for cold storage:
//!
//! - [`ColdStorageTask`] processes requests from channels
//! - [`ColdStorageHandle`] provides full read/write access
//! - [`ColdStorageReadHandle`] provides read-only access

mod cache;
mod handle;
pub use handle::{ColdStorageHandle, ColdStorageReadHandle};
mod runner;
pub use runner::ColdStorageTask;