ethrex-p2p 17.0.0

Peer-to-peer networking (discv4/discv5, RLPx, eth, snap) for the ethrex Ethereum client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Trie Healing Module
//!
//! Heals state and storage tries during snap sync by downloading
//! missing nodes and reconciling inconsistencies from multi-pivot downloads.

pub mod state;
pub mod storage;
mod types;

pub use state::heal_state_trie_wrap;
pub use storage::heal_storage_trie;

// Re-export shared types for external use
#[allow(unused_imports)]
pub use types::{HealingQueueEntry, StateHealingQueue};