Type Definition bdk_chain::local_chain::ChangeSet

source ·
pub type ChangeSet = BTreeMap<u32, Option<BlockHash>>;
Expand description

The ChangeSet represents changes to LocalChain.

The key represents the block height, and the value either represents added a new CheckPoint (if Some), or removing a CheckPoint (if None).