casper_client/types/execution_result.rs
1use serde::{Deserialize, Serialize};
2
3use super::BlockHash;
4
5/// The execution result of a single deploy.
6#[derive(Serialize, Deserialize, Debug)]
7#[serde(deny_unknown_fields)]
8pub struct ExecutionResult {
9 /// The block hash.
10 pub block_hash: BlockHash,
11 /// Execution result.
12 pub result: casper_types::ExecutionResult,
13}