use std::collections::HashMap;
use ethrex_trie::{Nibbles, Node};
#[derive(Debug, Clone)]
pub struct HealingQueueEntry {
pub node: Node,
pub pending_children_count: usize,
pub parent_path: Nibbles,
}
pub type StateHealingQueue = HashMap<Nibbles, HealingQueueEntry>;