[][src]Struct grin_chain::store::ChainStore

pub struct ChainStore { /* fields omitted */ }

All chain-related database operations

Methods

impl ChainStore[src]

pub fn new(db_env: Arc<Environment>) -> Result<ChainStore, Error>[src]

Create new chain store

impl ChainStore[src]

pub fn head(&self) -> Result<Tip, Error>[src]

pub fn tail(&self) -> Result<Tip, Error>[src]

pub fn head_header(&self) -> Result<BlockHeader, Error>[src]

Header of the block at the head of the block chain (not the same thing as header_head).

pub fn header_head(&self) -> Result<Tip, Error>[src]

Head of the header chain (not the same thing as head_header).

pub fn get_sync_head(&self) -> Result<Tip, Error>[src]

pub fn get_block(&self, h: &Hash) -> Result<Block, Error>[src]

pub fn block_exists(&self, h: &Hash) -> Result<bool, Error>[src]

pub fn get_block_sums(&self, h: &Hash) -> Result<BlockSums, Error>[src]

pub fn get_previous_header(
    &self,
    header: &BlockHeader
) -> Result<BlockHeader, Error>
[src]

pub fn get_block_header(&self, h: &Hash) -> Result<BlockHeader, Error>[src]

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

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

Builds a new batch to be used with this store.

Auto Trait Implementations

impl Send for ChainStore

impl Sync for ChainStore

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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