Struct TxHashSet

Source
pub struct TxHashSet { /* private fields */ }
Expand description

An easy to manipulate structure holding the 3 MMRs necessary to validate blocks and capturing the output set, associated rangeproofs and the kernels. Also handles the index of Commitments to positions in the output and rangeproof MMRs.

Note that the index is never authoritative, only the trees are guaranteed to indicate whether an output is spent or not. The index may have commitments that have already been spent, even with pruning enabled.

Implementations§

Source§

impl TxHashSet

Source

pub fn open( root_dir: String, commit_index: Arc<ChainStore>, header: Option<&BlockHeader>, ) -> Result<TxHashSet, Error>

Open an existing or new set of backends for the TxHashSet

Source

pub fn release_backend_files(&mut self)

Close all backend file handles

Source

pub fn get_unspent( &self, commit: Commitment, ) -> Result<Option<(OutputIdentifier, CommitPos)>, Error>

Check if an output is unspent. We look in the index to find the output MMR pos. Then we check the entry in the output MMR and confirm the hash matches.

Source

pub fn last_n_output(&self, distance: u64) -> Vec<(Hash, OutputIdentifier)>

returns the last N nodes inserted into the tree (i.e. the ‘bottom’ nodes at level 0 TODO: These need to return the actual data from the flat-files instead of hashes now

Source

pub fn last_n_rangeproof(&self, distance: u64) -> Vec<(Hash, RangeProof)>

as above, for range proofs

Source

pub fn last_n_kernel(&self, distance: u64) -> Vec<(Hash, TxKernel)>

as above, for kernels

Source

pub fn kernel_pmmr_at( &self, header: &BlockHeader, ) -> ReadonlyPMMR<'_, TxKernel, PMMRBackend<TxKernel>>

Efficient view into the kernel PMMR based on size in header.

Source

pub fn output_pmmr_at( &self, header: &BlockHeader, ) -> ReadonlyPMMR<'_, OutputIdentifier, PMMRBackend<OutputIdentifier>>

Efficient view into the output PMMR based on size in header.

Source

pub fn rangeproof_pmmr_at( &self, header: &BlockHeader, ) -> ReadonlyPMMR<'_, RangeProof, PMMRBackend<RangeProof>>

Efficient view into the rangeproof PMMR based on size in header.

Source

pub fn get_block_header(&self, hash: &Hash) -> Result<BlockHeader, Error>

Convenience function to query the db for a header by its hash.

Source

pub fn outputs_by_pmmr_index( &self, start_index: u64, max_count: u64, max_index: Option<u64>, ) -> (u64, Vec<OutputIdentifier>)

returns outputs from the given pmmr index up to the specified limit. Also returns the last index actually populated max index is the last PMMR index to consider, not leaf index

Source

pub fn rangeproofs_by_pmmr_index( &self, start_index: u64, max_count: u64, max_index: Option<u64>, ) -> (u64, Vec<RangeProof>)

As above, for rangeproofs

Source

pub fn output_mmr_size(&self) -> u64

size of output mmr

Source

pub fn kernel_mmr_size(&self) -> u64

size of kernel mmr

Source

pub fn rangeproof_mmr_size(&self) -> u64

size of rangeproof mmr (can differ from output mmr size during PIBD sync)

Source

pub fn find_kernel( &self, excess: &Commitment, min_index: Option<u64>, max_index: Option<u64>, ) -> Option<(TxKernel, u64)>

Find a kernel with a given excess. Work backwards from max_index to min_index NOTE: this linear search over all kernel history can be VERY expensive public API access to this method should be limited

Source

pub fn roots(&self) -> Result<TxHashSetRoots, Error>

Get MMR roots.

Source

pub fn get_output_pos(&self, commit: &Commitment) -> Result<u64, Error>

Return Commit’s MMR position

Source

pub fn merkle_proof(&mut self, commit: Commitment) -> Result<MerkleProof, Error>

build a new merkle proof for the given output commitment

Source

pub fn compact( &mut self, horizon_header: &BlockHeader, batch: &Batch<'_>, ) -> Result<(), Error>

Compact the MMR data files and flush the rm logs

Source

pub fn init_recent_kernel_pos_index( &self, header_pmmr: &PMMRHandle<BlockHeader>, batch: &Batch<'_>, ) -> Result<(), Error>

(Re)build the NRD kernel_pos index based on 2 weeks of recent kernel history.

Source

pub fn verify_kernel_pos_index( &self, from_header: &BlockHeader, header_pmmr: &PMMRHandle<BlockHeader>, batch: &Batch<'_>, status: Option<Arc<SyncState>>, stop_state: Option<Arc<StopState>>, ) -> Result<(), Error>

Verify and (re)build the NRD kernel_pos index from the provided header onwards.

Source

pub fn init_output_pos_index( &self, header_pmmr: &PMMRHandle<BlockHeader>, batch: &Batch<'_>, ) -> Result<(), Error>

(Re)build the output_pos index to be consistent with the current UTXO set. Remove any “stale” index entries that do not correspond to outputs in the UTXO set. Add any missing index entries based on UTXO set.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> SafeBorrow<T> for T
where T: ?Sized,

Source§

fn borrow_replacement(ptr: &T) -> &T

Given ptr, which was obtained from a prior call to Self::borrow(), return a value with the same nominal lifetime which is guaranteed to survive mutations to Self. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> UnsafeAny for T
where T: Any,