pub struct ServiceParams {
    pub engine: Arc<dyn EthEngine>,
    pub genesis_block: Bytes,
    pub pruning: Algorithm,
    pub restoration_db_handler: Box<dyn BlockChainDBHandler>,
    pub channel: Channel,
    pub snapshot_root: PathBuf,
    pub client: Arc<dyn SnapshotClient>,
}
Expand description

Snapshot service parameters.

Fields

engine: Arc<dyn EthEngine>

The consensus engine this is built on.

genesis_block: Bytes

The chain’s genesis block.

pruning: Algorithm

State pruning algorithm.

restoration_db_handler: Box<dyn BlockChainDBHandler>

Handler for opening a restoration DB.

channel: Channel

Async IO channel for sending messages.

snapshot_root: PathBuf

The directory to put snapshots in. Usually “/snapshot”

client: Arc<dyn SnapshotClient>

A handle for database restoration.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.