2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-03-17 15:15:10 +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-05-24 12:31:33 +02:00
|
|
|
use util::{Address, H256, U256};
|
2017-08-30 19:18:28 +02:00
|
|
|
use hash::KECCAK_NULL_RLP;
|
2016-03-17 15:15:10 +01:00
|
|
|
use ethjson;
|
2016-04-09 19:20:35 +02:00
|
|
|
use super::seal::Seal;
|
2016-03-17 15:15:10 +01:00
|
|
|
|
|
|
|
/// Genesis components.
|
|
|
|
pub struct Genesis {
|
|
|
|
/// Seal.
|
|
|
|
pub seal: Seal,
|
|
|
|
/// Difficulty.
|
|
|
|
pub difficulty: U256,
|
|
|
|
/// Author.
|
|
|
|
pub author: Address,
|
|
|
|
/// Timestamp.
|
|
|
|
pub timestamp: u64,
|
|
|
|
/// Parent hash.
|
|
|
|
pub parent_hash: H256,
|
|
|
|
/// Gas limit.
|
|
|
|
pub gas_limit: U256,
|
|
|
|
/// Transactions root.
|
|
|
|
pub transactions_root: H256,
|
|
|
|
/// Receipts root.
|
|
|
|
pub receipts_root: H256,
|
|
|
|
/// State root.
|
|
|
|
pub state_root: Option<H256>,
|
|
|
|
/// Gas used.
|
|
|
|
pub gas_used: U256,
|
|
|
|
/// Extra data.
|
|
|
|
pub extra_data: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<ethjson::spec::Genesis> for Genesis {
|
|
|
|
fn from(g: ethjson::spec::Genesis) -> Self {
|
|
|
|
Genesis {
|
2016-04-09 19:20:35 +02:00
|
|
|
seal: From::from(g.seal),
|
2016-03-17 15:15:10 +01:00
|
|
|
difficulty: g.difficulty.into(),
|
2016-12-22 07:06:40 +01:00
|
|
|
author: g.author.map_or_else(Address::zero, Into::into),
|
|
|
|
timestamp: g.timestamp.map_or(0, Into::into),
|
|
|
|
parent_hash: g.parent_hash.map_or_else(H256::zero, Into::into),
|
2016-03-17 15:15:10 +01:00
|
|
|
gas_limit: g.gas_limit.into(),
|
2017-08-30 19:18:28 +02:00
|
|
|
transactions_root: g.transactions_root.map_or_else(|| KECCAK_NULL_RLP.clone(), Into::into),
|
|
|
|
receipts_root: g.receipts_root.map_or_else(|| KECCAK_NULL_RLP.clone(), Into::into),
|
2016-03-17 15:15:10 +01:00
|
|
|
state_root: g.state_root.map(Into::into),
|
|
|
|
gas_used: g.gas_used.map_or_else(U256::zero, Into::into),
|
|
|
|
extra_data: g.extra_data.map_or_else(Vec::new, Into::into),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|