2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-03-04 11:56:04 +01:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-03-04 11:56:04 +01:00
|
|
|
// 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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2016-03-04 11:56:04 +01:00
|
|
|
// 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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-04 11:56:04 +01:00
|
|
|
|
2016-11-10 18:30:17 +01:00
|
|
|
//! A generic verifier trait.
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
use super::verification;
|
2019-01-17 16:43:08 +01:00
|
|
|
use call_contract::CallContract;
|
|
|
|
use client::BlockInfo;
|
2017-09-26 14:19:08 +02:00
|
|
|
use engines::EthEngine;
|
2016-03-04 11:56:04 +01:00
|
|
|
use error::Error;
|
2019-01-04 14:05:46 +01:00
|
|
|
use types::header::Header;
|
2016-03-04 11:56:04 +01:00
|
|
|
|
|
|
|
/// Should be used to verify blocks.
|
2018-03-03 18:42:13 +01:00
|
|
|
pub trait Verifier<C>: Send + Sync
|
|
|
|
where
|
|
|
|
C: BlockInfo + CallContract,
|
|
|
|
{
|
2016-11-10 18:30:17 +01:00
|
|
|
/// Verify a block relative to its parent and uncles.
|
2018-03-03 18:42:13 +01:00
|
|
|
fn verify_block_family(
|
2017-09-26 14:19:08 +02:00
|
|
|
&self,
|
|
|
|
header: &Header,
|
|
|
|
parent: &Header,
|
2020-07-29 10:36:15 +02:00
|
|
|
engine: &dyn EthEngine,
|
2018-03-03 18:42:13 +01:00
|
|
|
do_full: Option<verification::FullFamilyParams<C>>,
|
2017-09-26 14:19:08 +02:00
|
|
|
) -> Result<(), Error>;
|
|
|
|
|
2016-11-10 18:30:17 +01:00
|
|
|
/// Do a final verification check for an enacted header vs its expected counterpart.
|
2017-03-29 19:59:20 +02:00
|
|
|
fn verify_block_final(&self, expected: &Header, got: &Header) -> Result<(), Error>;
|
2017-04-13 20:31:29 +02:00
|
|
|
/// Verify a block, inspecing external state.
|
2020-07-29 10:36:15 +02:00
|
|
|
fn verify_block_external(&self, header: &Header, engine: &dyn EthEngine) -> Result<(), Error>;
|
2016-03-04 11:56:04 +01:00
|
|
|
}
|