2016-01-10 14:05:39 +01:00
|
|
|
//! General error types for use in ethcore.
|
|
|
|
|
|
|
|
use util::*;
|
2016-01-11 12:45:35 +01:00
|
|
|
use header::BlockNumber;
|
2016-01-10 14:05:39 +01:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Mismatch<T: fmt::Debug> {
|
|
|
|
pub expected: T,
|
|
|
|
pub found: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct OutOfBounds<T: fmt::Debug> {
|
|
|
|
pub min: T,
|
|
|
|
pub max: T,
|
|
|
|
pub found: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum BlockError {
|
2016-01-10 19:47:32 +01:00
|
|
|
TooManyUncles(OutOfBounds<usize>),
|
2016-01-10 14:05:39 +01:00
|
|
|
UncleWrongGeneration,
|
|
|
|
ExtraDataOutOfBounds(OutOfBounds<usize>),
|
|
|
|
InvalidSealArity(Mismatch<usize>),
|
2016-01-10 19:47:32 +01:00
|
|
|
TooMuchGasUsed(OutOfBounds<U256>),
|
|
|
|
InvalidUnclesHash(Mismatch<H256>),
|
2016-01-11 12:45:35 +01:00
|
|
|
UncleTooOld(OutOfBounds<BlockNumber>),
|
|
|
|
UncleIsBrother(OutOfBounds<BlockNumber>),
|
2016-01-10 19:47:32 +01:00
|
|
|
UncleInChain(H256),
|
|
|
|
UncleParentNotInChain(H256),
|
|
|
|
InvalidStateRoot,
|
|
|
|
InvalidGasUsed,
|
|
|
|
InvalidTransactionsRoot(Mismatch<H256>),
|
|
|
|
InvalidDifficulty(Mismatch<U256>),
|
|
|
|
InvalidGasLimit(OutOfBounds<U256>),
|
|
|
|
InvalidReceiptsStateRoot,
|
2016-01-11 12:45:35 +01:00
|
|
|
InvalidTimestamp(OutOfBounds<u64>),
|
2016-01-10 19:47:32 +01:00
|
|
|
InvalidLogBloom,
|
|
|
|
InvalidBlockNonce,
|
|
|
|
InvalidParentHash(Mismatch<H256>),
|
2016-01-11 12:45:35 +01:00
|
|
|
InvalidNumber(OutOfBounds<BlockNumber>),
|
2016-01-10 19:47:32 +01:00
|
|
|
UnknownParent(H256),
|
|
|
|
UnknownUncleParent(H256),
|
2016-01-10 14:05:39 +01:00
|
|
|
}
|
|
|
|
|
2016-01-10 23:37:09 +01:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum ImportError {
|
|
|
|
Bad(BlockError),
|
|
|
|
AlreadyInChain,
|
|
|
|
AlreadyQueued,
|
|
|
|
}
|
|
|
|
|
2016-01-10 14:05:39 +01:00
|
|
|
#[derive(Debug)]
|
|
|
|
/// General error type which should be capable of representing all errors in ethcore.
|
|
|
|
pub enum Error {
|
|
|
|
Util(UtilError),
|
|
|
|
Block(BlockError),
|
|
|
|
UnknownEngineName(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<BlockError> for Error {
|
|
|
|
fn from(err: BlockError) -> Error {
|
|
|
|
Error::Block(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: uncomment below once https://github.com/rust-lang/rust/issues/27336 sorted.
|
|
|
|
/*#![feature(concat_idents)]
|
|
|
|
macro_rules! assimilate {
|
|
|
|
($name:ident) => (
|
|
|
|
impl From<concat_idents!($name, Error)> for Error {
|
|
|
|
fn from(err: concat_idents!($name, Error)) -> Error {
|
|
|
|
Error:: $name (err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
assimilate!(FromHex);
|
|
|
|
assimilate!(BaseData);*/
|