Skip to main content

UtxoSet

Type Alias UtxoSet 

Source
pub type UtxoSet = HashMap<OutPoint, Arc<UTXO>, FxBuildHasher>;
Expand description

UTXO Set: ๐’ฐ๐’ฎ = ๐’ช โ†’ ๐’ฐ

Arc avoids ~1500+ clones/block during IBD supplement_utxo_map and apply_sync_batch. In production builds, uses FxHashMap for 2-3x faster lookups in large UTXO sets.

Aliased Typeยง

pub struct UtxoSet { /* private fields */ }