Struct blocks_iterator::Config[][src]

pub struct Config {
    pub blocks_dir: PathBuf,
    pub network: Network,
    pub skip_prevout: bool,
    pub max_reorg: u8,
}

Fields

blocks_dir: PathBufnetwork: Network

Network (bitcoin, testnet, regtest, signet)

skip_prevout: bool

Skip calculation of previous outputs, it’s faster and it uses much less memory however make it impossible calculate fees or access tx input previous scripts

max_reorg: u8

Maximum length of a reorg allowed, during reordering send block to the next step only if it has max_reorg following blocks. Higher is more conservative, while lower faster. When parsing testnet blocks, it may be necessary to increase this a lot

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl StructOpt for Config[src]

impl StructOptInternal for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.