pub type MainnetContext<DB> = Context<BlockEnv, TxEnv, CfgEnv, DB, Journal<DB>, ()>;Expand description
Type alias for a mainnet context with standard Ethereum environment types.
Aliased Type§
pub struct MainnetContext<DB> {
pub block: BlockEnv,
pub tx: TxEnv,
pub cfg: CfgEnv,
pub journaled_state: Journal<DB>,
pub chain: (),
pub local: LocalContext,
pub error: Result<(), ContextError<<DB as Database>::Error>>,
}Fields§
§block: BlockEnvBlock information.
tx: TxEnvTransaction information.
cfg: CfgEnvConfigurations.
journaled_state: Journal<DB>EVM State with journaling support and database.
chain: ()Inner context.
local: LocalContextLocal context that is filled by execution.
error: Result<(), ContextError<<DB as Database>::Error>>Error that happened during execution.