openethereum/src/receipt.rs
Gav Wood ea9a008031 Move information from networkparams.rs into spec.rs
Repot null_engine, spec, evm_schedule, builtin.
2015-12-20 20:45:43 +00:00

8 lines
130 B
Rust

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