Skip to main content

FastUtxoSet

Type Alias FastUtxoSet 

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

Fast UTXO set using FxHash for better performance.

FxHashMap uses a faster hash function than the default SipHash. For fixed-size keys like OutPoint (36 bytes), this is 2-3x faster.

Aliased Typeยง

pub struct FastUtxoSet { /* private fields */ }