Struct fuel_core_interfaces::executor::ExecutionResult
source · pub struct ExecutionResult {
pub block: FuelBlock,
pub skipped_transactions: Vec<(Transaction, Error)>,
pub tx_status: Vec<TransactionExecutionStatus>,
}
Expand description
The result of transactions execution.
Fields§
§block: FuelBlock
Created block during the execution of transactions. It contains only valid transactions.
skipped_transactions: Vec<(Transaction, Error)>
The list of skipped transactions with corresponding errors. Those transactions were not included in the block and didn’t affect the state of the blockchain.
tx_status: Vec<TransactionExecutionStatus>
The status of the transactions execution included into the block.