[][src]Struct grin_chain::txhashset::TxHashSet

pub struct TxHashSet { /* fields omitted */ }

An easy to manipulate structure holding the 3 sum trees necessary to validate blocks and capturing the Output set, the range proofs and the kernels. Also handles the index of Commitments to positions in the output and range proof pmmr trees.

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.

Methods

impl TxHashSet[src]

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

Open an existing or new set of backends for the TxHashSet

pub fn release_backend_files(&mut self)[src]

Close all backend file handles

pub fn is_unspent(
    &self,
    output_id: &OutputIdentifier
) -> Result<(Hash, u64), Error>
[src]

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.

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

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

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

as above, for range proofs

pub fn last_n_kernel(&self, distance: u64) -> Vec<(Hash, TxKernelEntry)>[src]

as above, for kernels

pub fn get_header_hash_by_height(&self, height: u64) -> Result<Hash, Error>[src]

Get the header hash at the specified height based on the current state of the txhashset.

pub fn get_header_by_height(&self, height: u64) -> Result<BlockHeader, Error>[src]

Get the header at the specified height based on the current state of the txhashset. Derives the MMR pos from the height (insertion index) and retrieves the header hash. Looks the header up in the db by hash.

pub fn outputs_by_insertion_index(
    &self,
    start_index: u64,
    max_count: u64
) -> (u64, Vec<OutputIdentifier>)
[src]

returns outputs from the given insertion (leaf) index up to the specified limit. Also returns the last index actually populated

pub fn highest_output_insertion_index(&self) -> u64[src]

highest output insertion index available

pub fn rangeproofs_by_insertion_index(
    &self,
    start_index: u64,
    max_count: u64
) -> (u64, Vec<RangeProof>)
[src]

As above, for rangeproofs

pub fn roots(&self) -> TxHashSetRoots[src]

Get MMR roots.

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

Return Commit's MMR position

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

build a new merkle proof for the given position.

pub fn compact(&mut self, batch: &mut Batch) -> Result<(), Error>[src]

Compact the MMR data files and flush the rm logs

Auto Trait Implementations

impl Send for TxHashSet

impl Sync for TxHashSet

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self

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