[][src]Struct grin_chain::txhashset::RewindableKernelView

pub struct RewindableKernelView<'a> { /* fields omitted */ }

Rewindable (but readonly) view of the kernel set (based on kernel MMR).

Methods

impl<'a> RewindableKernelView<'a>[src]

pub fn new(
    pmmr: RewindablePMMR<'a, TxKernel, PMMRBackend<TxKernel>>,
    batch: &'a Batch,
    header: BlockHeader
) -> RewindableKernelView<'a>
[src]

Build a new readonly kernel view.

pub fn batch(&self) -> &'a Batch[src]

Accessor for the batch used in this view. We will discard this batch (rollback) at the end, so be aware of this. Nothing will get written to the db/index via this view.

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

Rewind this readonly view to a previous block. We accomplish this in a readonly way because we can rewind the PMMR via last_pos, without rewinding the underlying backend files.

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

Special handling to make sure the whole kernel set matches each of its roots in each block header, without truncation. We go back header by header, rewind and check each root. This fixes a potential weakness in fast sync where a reorg past the horizon could allow a whole rewrite of the kernel set.

Auto Trait Implementations

impl<'a> !Send for RewindableKernelView<'a>

impl<'a> !Sync for RewindableKernelView<'a>

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 = !

🔬 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, 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> Any for T where
    T: 'static + ?Sized
[src]

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

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