2015-12-20 13:16:12 +01:00
|
|
|
use util::hash::*;
|
2016-01-08 22:04:21 +01:00
|
|
|
use util::uint::*;
|
2015-12-20 13:16:12 +01:00
|
|
|
|
2015-12-20 21:45:43 +01:00
|
|
|
/// Information describing execution of a transaction.
|
2015-12-20 13:16:12 +01:00
|
|
|
pub struct Receipt {
|
|
|
|
// TODO
|
|
|
|
pub state_root: H256,
|
2016-01-08 22:04:21 +01:00
|
|
|
pub gas_used: U256,
|
2015-12-20 13:16:12 +01:00
|
|
|
}
|