openethereum/src/receipt.rs

8 lines
130 B
Rust

use util::hash::*;
/// Information describing execution of a transaction.
pub struct Receipt {
// TODO
pub state_root: H256,
}