2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-05 13:40:41 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-09-04 16:36:49 +02:00
|
|
|
use bigint::prelude::U256;
|
2017-08-03 15:55:58 +02:00
|
|
|
use engines::Engine;
|
2017-09-26 14:19:08 +02:00
|
|
|
use parity_machine::{Header, LiveBlock, WithBalances};
|
|
|
|
|
|
|
|
/// Params for a null engine.
|
|
|
|
#[derive(Clone, Default)]
|
|
|
|
pub struct NullEngineParams {
|
|
|
|
/// base reward for a block.
|
|
|
|
pub block_reward: U256,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<::ethjson::spec::NullEngineParams> for NullEngineParams {
|
|
|
|
fn from(p: ::ethjson::spec::NullEngineParams) -> Self {
|
|
|
|
NullEngineParams {
|
|
|
|
block_reward: p.block_reward.map_or_else(Default::default, Into::into),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-20 21:45:43 +01:00
|
|
|
|
2016-07-28 20:32:20 +02:00
|
|
|
/// An engine which does not provide any consensus mechanism and does not seal blocks.
|
2017-09-26 14:19:08 +02:00
|
|
|
pub struct NullEngine<M> {
|
|
|
|
params: NullEngineParams,
|
|
|
|
machine: M,
|
2015-12-20 21:45:43 +01:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
impl<M> NullEngine<M> {
|
2016-01-21 16:08:09 +01:00
|
|
|
/// Returns new instance of NullEngine with default VM Factory
|
2017-09-26 14:19:08 +02:00
|
|
|
pub fn new(params: NullEngineParams, machine: M) -> Self {
|
|
|
|
NullEngine {
|
2016-04-09 19:20:35 +02:00
|
|
|
params: params,
|
2017-09-26 14:19:08 +02:00
|
|
|
machine: machine,
|
2016-04-09 19:20:35 +02:00
|
|
|
}
|
2015-12-20 21:45:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
impl<M: Default> Default for NullEngine<M> {
|
2016-12-05 16:20:32 +01:00
|
|
|
fn default() -> Self {
|
|
|
|
Self::new(Default::default(), Default::default())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
impl<M: WithBalances> Engine<M> for NullEngine<M> {
|
2016-04-09 19:20:35 +02:00
|
|
|
fn name(&self) -> &str {
|
|
|
|
"NullEngine"
|
|
|
|
}
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
fn machine(&self) -> &M { &self.machine }
|
2016-04-09 19:20:35 +02:00
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
fn on_close_block(&self, block: &mut M::LiveBlock) -> Result<(), M::Error> {
|
|
|
|
use std::ops::Shr;
|
2016-03-20 19:20:37 +01:00
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
let author = *LiveBlock::header(&*block).author();
|
|
|
|
let number = LiveBlock::header(&*block).number();
|
2017-04-19 20:31:53 +02:00
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
let reward = self.params.block_reward;
|
|
|
|
if reward == U256::zero() { return Ok(()) }
|
2017-07-25 12:04:37 +02:00
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
let n_uncles = LiveBlock::uncles(&*block).len();
|
2017-07-25 12:04:37 +02:00
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
// Bestow block reward
|
|
|
|
let result_block_reward = reward + reward.shr(5) * U256::from(n_uncles);
|
|
|
|
let mut uncle_rewards = Vec::with_capacity(n_uncles);
|
|
|
|
|
|
|
|
self.machine.add_balance(block, &author, &result_block_reward)?;
|
2017-07-25 12:04:37 +02:00
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
// bestow uncle rewards.
|
|
|
|
for u in LiveBlock::uncles(&*block) {
|
|
|
|
let uncle_author = u.author();
|
|
|
|
let result_uncle_reward = (reward * U256::from(8 + u.number() - number)).shr(3);
|
|
|
|
|
|
|
|
uncle_rewards.push((*uncle_author, result_uncle_reward));
|
2017-07-26 19:36:09 +02:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
for &(ref a, ref reward) in &uncle_rewards {
|
|
|
|
self.machine.add_balance(block, a, reward)?;
|
2017-07-25 12:04:37 +02:00
|
|
|
}
|
2017-09-26 14:19:08 +02:00
|
|
|
|
|
|
|
// note and trace.
|
|
|
|
self.machine.note_rewards(block, &[(author, result_block_reward)], &uncle_rewards)
|
|
|
|
}
|
|
|
|
|
2017-11-15 23:51:49 +01:00
|
|
|
fn maximum_uncle_count(&self) -> usize { 2 }
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
fn verify_local_seal(&self, _header: &M::Header) -> Result<(), M::Error> {
|
2017-08-03 15:55:58 +02:00
|
|
|
Ok(())
|
2017-07-25 12:04:37 +02:00
|
|
|
}
|
2017-09-26 14:19:08 +02:00
|
|
|
|
|
|
|
fn snapshot_components(&self) -> Option<Box<::snapshot::SnapshotComponents>> {
|
|
|
|
Some(Box::new(::snapshot::PowSnapshot::new(10000, 10000)))
|
|
|
|
}
|
2015-12-20 21:45:43 +01:00
|
|
|
}
|