blvm-node 0.1.2

Bitcoin Commons BLVM: Minimal Bitcoin node implementation using blvm-protocol and blvm-consensus
1
2
3
4
5
6
7
8
//! Module hooks system
//!
//! Allows modules to provide cached data for expensive operations.
//! All hooks are advisory and have timeouts to prevent hanging.

pub mod manager;

pub use manager::HookManager;