2016-01-09 12:30:41 +01:00
|
|
|
use util::*;
|
2016-01-09 22:13:13 +01:00
|
|
|
use basic_types::LogBloom;
|
2016-01-11 13:29:15 +01:00
|
|
|
use log_entry::LogEntry;
|
2016-01-09 23:47:15 +01:00
|
|
|
|
2015-12-20 21:45:43 +01:00
|
|
|
/// Information describing execution of a transaction.
|
2016-01-26 19:18:22 +01:00
|
|
|
#[derive(Default, Debug, Clone)]
|
2015-12-20 13:16:12 +01:00
|
|
|
pub struct Receipt {
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-20 13:16:12 +01:00
|
|
|
pub state_root: H256,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2016-01-08 22:04:21 +01:00
|
|
|
pub gas_used: U256,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2016-01-09 22:13:13 +01:00
|
|
|
pub log_bloom: LogBloom,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2016-01-09 23:47:15 +01:00
|
|
|
pub logs: Vec<LogEntry>,
|
|
|
|
}
|
|
|
|
|
2016-01-11 17:37:22 +01:00
|
|
|
impl Receipt {
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2016-01-11 17:37:22 +01:00
|
|
|
pub fn new(state_root: H256, gas_used: U256, logs: Vec<LogEntry>) -> Receipt {
|
|
|
|
Receipt {
|
|
|
|
state_root: state_root,
|
|
|
|
gas_used: gas_used,
|
|
|
|
log_bloom: logs.iter().fold(LogBloom::new(), |mut b, l| { b |= &l.bloom(); b }),
|
|
|
|
logs: logs,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-27 17:22:01 +01:00
|
|
|
impl Encodable for Receipt {
|
2016-01-09 23:47:15 +01:00
|
|
|
fn rlp_append(&self, s: &mut RlpStream) {
|
2016-01-27 17:22:01 +01:00
|
|
|
s.begin_list(4);
|
2016-01-09 23:47:15 +01:00
|
|
|
s.append(&self.state_root);
|
|
|
|
s.append(&self.gas_used);
|
|
|
|
s.append(&self.log_bloom);
|
2016-01-28 20:13:05 +01:00
|
|
|
s.append(&self.logs);
|
2016-01-09 23:47:15 +01:00
|
|
|
}
|
2015-12-20 13:16:12 +01:00
|
|
|
}
|
2016-01-30 14:00:36 +01:00
|
|
|
|
|
|
|
|
2016-02-01 01:03:57 +01:00
|
|
|
#[test]
|
|
|
|
fn test_basic() {
|
2016-02-01 11:00:18 +01:00
|
|
|
let expected = FromHex::from_hex("f90162a02f697d671e9ae4ee24a43c4b0d7e15f1cb4ba6de1561120d43b9a4e8c4a8a6ee83040caeb9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000f838f794dcf421d093428b096ca501a7cd1a740855a7976fc0a00000000000000000000000000000000000000000000000000000000000000000").unwrap();
|
2016-02-01 01:03:57 +01:00
|
|
|
let r = Receipt::new(
|
|
|
|
x!("2f697d671e9ae4ee24a43c4b0d7e15f1cb4ba6de1561120d43b9a4e8c4a8a6ee"),
|
|
|
|
x!(0x40cae),
|
|
|
|
vec![LogEntry::new(
|
|
|
|
x!("dcf421d093428b096ca501a7cd1a740855a7976f"),
|
|
|
|
vec![],
|
2016-02-01 11:00:18 +01:00
|
|
|
vec![0u8; 32]
|
2016-02-01 01:03:57 +01:00
|
|
|
)]
|
|
|
|
);
|
|
|
|
assert_eq!(&encode(&r)[..], &expected[..]);
|
2016-01-30 14:00:36 +01:00
|
|
|
}
|