Miner field renamed to author
This commit is contained in:
parent
1f3f91136c
commit
94efa3ac19
@ -163,11 +163,11 @@ impl Tracer for ExecutiveTracer {
|
|||||||
self.traces.push(trace);
|
self.traces.push(trace);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn trace_reward(&mut self, miner: Address, value: U256, reward_type: RewardType) {
|
fn trace_reward(&mut self, author: Address, value: U256, reward_type: RewardType) {
|
||||||
let trace = FlatTrace {
|
let trace = FlatTrace {
|
||||||
subtraces: 0,
|
subtraces: 0,
|
||||||
action: Action::Reward(Reward {
|
action: Action::Reward(Reward {
|
||||||
miner: miner,
|
author: author,
|
||||||
value: value,
|
value: value,
|
||||||
reward_type: reward_type,
|
reward_type: reward_type,
|
||||||
}),
|
}),
|
||||||
|
@ -82,7 +82,7 @@ pub trait Tracer: Send {
|
|||||||
fn trace_suicide(&mut self, address: Address, balance: U256, refund_address: Address);
|
fn trace_suicide(&mut self, address: Address, balance: U256, refund_address: Address);
|
||||||
|
|
||||||
/// Stores reward info.
|
/// Stores reward info.
|
||||||
fn trace_reward(&mut self, miner: Address, value: U256, reward_type: RewardType);
|
fn trace_reward(&mut self, author: Address, value: U256, reward_type: RewardType);
|
||||||
|
|
||||||
/// Spawn subtracer which will be used to trace deeper levels of execution.
|
/// Spawn subtracer which will be used to trace deeper levels of execution.
|
||||||
fn subtracer(&self) -> Self where Self: Sized;
|
fn subtracer(&self) -> Self where Self: Sized;
|
||||||
|
@ -130,7 +130,7 @@ impl Filter {
|
|||||||
from_matches && to_matches
|
from_matches && to_matches
|
||||||
},
|
},
|
||||||
Action::Reward(ref reward) => {
|
Action::Reward(ref reward) => {
|
||||||
let to_matches = self.to_address.matches(&reward.miner);
|
let to_matches = self.to_address.matches(&reward.author);
|
||||||
to_matches
|
to_matches
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -348,7 +348,7 @@ mod tests {
|
|||||||
|
|
||||||
let trace = FlatTrace {
|
let trace = FlatTrace {
|
||||||
action: Action::Reward(Reward {
|
action: Action::Reward(Reward {
|
||||||
miner: 2.into(),
|
author: 2.into(),
|
||||||
value: 100.into(),
|
value: 100.into(),
|
||||||
reward_type: RewardType::Block,
|
reward_type: RewardType::Block,
|
||||||
}),
|
}),
|
||||||
|
@ -241,7 +241,7 @@ mod tests {
|
|||||||
|
|
||||||
let flat_trace3 = FlatTrace {
|
let flat_trace3 = FlatTrace {
|
||||||
action: Action::Reward(Reward {
|
action: Action::Reward(Reward {
|
||||||
miner: "412fda7643b37d436cb40628f6dbbb80a07267ed".parse().unwrap(),
|
author: "412fda7643b37d436cb40628f6dbbb80a07267ed".parse().unwrap(),
|
||||||
value: 10.into(),
|
value: 10.into(),
|
||||||
reward_type: RewardType::Uncle,
|
reward_type: RewardType::Uncle,
|
||||||
}),
|
}),
|
||||||
@ -252,7 +252,7 @@ mod tests {
|
|||||||
|
|
||||||
let flat_trace4 = FlatTrace {
|
let flat_trace4 = FlatTrace {
|
||||||
action: Action::Reward(Reward {
|
action: Action::Reward(Reward {
|
||||||
miner: "412fda7643b37d436cb40628f6dbbb80a07267ed".parse().unwrap(),
|
author: "412fda7643b37d436cb40628f6dbbb80a07267ed".parse().unwrap(),
|
||||||
value: 10.into(),
|
value: 10.into(),
|
||||||
reward_type: RewardType::Block,
|
reward_type: RewardType::Block,
|
||||||
}),
|
}),
|
||||||
|
@ -256,8 +256,8 @@ impl Decodable for RewardType {
|
|||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
#[cfg_attr(feature = "ipc", binary)]
|
#[cfg_attr(feature = "ipc", binary)]
|
||||||
pub struct Reward {
|
pub struct Reward {
|
||||||
/// Miner's address.
|
/// Author's address.
|
||||||
pub miner: Address,
|
pub author: Address,
|
||||||
/// Reward amount.
|
/// Reward amount.
|
||||||
pub value: U256,
|
pub value: U256,
|
||||||
/// Reward type.
|
/// Reward type.
|
||||||
@ -267,14 +267,14 @@ pub struct Reward {
|
|||||||
impl Reward {
|
impl Reward {
|
||||||
/// Return reward action bloom.
|
/// Return reward action bloom.
|
||||||
pub fn bloom(&self) -> LogBloom {
|
pub fn bloom(&self) -> LogBloom {
|
||||||
LogBloom::from_bloomed(&self.miner.sha3())
|
LogBloom::from_bloomed(&self.author.sha3())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Encodable for Reward {
|
impl Encodable for Reward {
|
||||||
fn rlp_append(&self, s: &mut RlpStream) {
|
fn rlp_append(&self, s: &mut RlpStream) {
|
||||||
s.begin_list(3);
|
s.begin_list(3);
|
||||||
s.append(&self.miner);
|
s.append(&self.author);
|
||||||
s.append(&self.value);
|
s.append(&self.value);
|
||||||
s.append(&self.reward_type);
|
s.append(&self.reward_type);
|
||||||
}
|
}
|
||||||
@ -283,7 +283,7 @@ impl Encodable for Reward {
|
|||||||
impl Decodable for Reward {
|
impl Decodable for Reward {
|
||||||
fn decode(rlp: &UntrustedRlp) -> Result<Self, DecoderError> {
|
fn decode(rlp: &UntrustedRlp) -> Result<Self, DecoderError> {
|
||||||
let res = Reward {
|
let res = Reward {
|
||||||
miner: rlp.val_at(0)?,
|
author: rlp.val_at(0)?,
|
||||||
value: rlp.val_at(1)?,
|
value: rlp.val_at(1)?,
|
||||||
reward_type: rlp.val_at(2)?,
|
reward_type: rlp.val_at(2)?,
|
||||||
};
|
};
|
||||||
|
@ -327,8 +327,8 @@ impl From<trace::RewardType> for RewardType {
|
|||||||
/// Reward action
|
/// Reward action
|
||||||
#[derive(Debug, Serialize)]
|
#[derive(Debug, Serialize)]
|
||||||
pub struct Reward {
|
pub struct Reward {
|
||||||
/// Miner's address.
|
/// Author's address.
|
||||||
pub miner: H160,
|
pub author: H160,
|
||||||
/// Reward amount.
|
/// Reward amount.
|
||||||
pub value: U256,
|
pub value: U256,
|
||||||
/// Reward type.
|
/// Reward type.
|
||||||
@ -339,7 +339,7 @@ pub struct Reward {
|
|||||||
impl From<trace::Reward> for Reward {
|
impl From<trace::Reward> for Reward {
|
||||||
fn from(r: trace::Reward) -> Self {
|
fn from(r: trace::Reward) -> Self {
|
||||||
Reward {
|
Reward {
|
||||||
miner: r.miner.into(),
|
author: r.author.into(),
|
||||||
value: r.value.into(),
|
value: r.value.into(),
|
||||||
reward_type: r.reward_type.into(),
|
reward_type: r.reward_type.into(),
|
||||||
}
|
}
|
||||||
@ -767,7 +767,7 @@ mod tests {
|
|||||||
fn test_trace_reward_serialize() {
|
fn test_trace_reward_serialize() {
|
||||||
let t = LocalizedTrace {
|
let t = LocalizedTrace {
|
||||||
action: Action::Reward(Reward {
|
action: Action::Reward(Reward {
|
||||||
miner: 4.into(),
|
author: 4.into(),
|
||||||
value: 6.into(),
|
value: 6.into(),
|
||||||
reward_type: RewardType::Block,
|
reward_type: RewardType::Block,
|
||||||
}),
|
}),
|
||||||
@ -780,7 +780,7 @@ mod tests {
|
|||||||
block_hash: 14.into(),
|
block_hash: 14.into(),
|
||||||
};
|
};
|
||||||
let serialized = serde_json::to_string(&t).unwrap();
|
let serialized = serde_json::to_string(&t).unwrap();
|
||||||
assert_eq!(serialized, r#"{"type":"reward","action":{"miner":"0x0000000000000000000000000000000000000004","value":"0x6","rewardType":"block"},"result":null,"traceAddress":[10],"subtraces":1,"transactionPosition":null,"transactionHash":null,"blockNumber":13,"blockHash":"0x000000000000000000000000000000000000000000000000000000000000000e"}"#);
|
assert_eq!(serialized, r#"{"type":"reward","action":{"author":"0x0000000000000000000000000000000000000004","value":"0x6","rewardType":"block"},"result":null,"traceAddress":[10],"subtraces":1,"transactionPosition":null,"transactionHash":null,"blockNumber":13,"blockHash":"0x000000000000000000000000000000000000000000000000000000000000000e"}"#);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
Loading…
Reference in New Issue
Block a user