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
|
|
|
//! No-op verifier.
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
use super::{verification, Verifier};
|
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
|
|
|
|
2016-11-10 18:30:17 +01:00
|
|
|
/// A no-op verifier -- this will verify everything it's given immediately.
|
2016-03-12 13:39:17 +01:00
|
|
|
#[allow(dead_code)]
|
2016-03-04 11:56:04 +01:00
|
|
|
pub struct NoopVerifier;
|
|
|
|
|
2018-03-03 18:42:13 +01:00
|
|
|
impl<C: BlockInfo + CallContract> Verifier<C> for NoopVerifier {
|
2017-09-26 14:19:08 +02:00
|
|
|
fn verify_block_family(
|
|
|
|
&self,
|
|
|
|
_: &Header,
|
|
|
|
_t: &Header,
|
2020-07-29 10:36:15 +02:00
|
|
|
_: &dyn EthEngine,
|
2018-03-03 18:42:13 +01:00
|
|
|
_: Option<verification::FullFamilyParams<C>>,
|
2017-09-26 14:19:08 +02:00
|
|
|
) -> Result<(), Error> {
|
2016-03-05 10:45:05 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-03-29 19:59:20 +02:00
|
|
|
fn verify_block_final(&self, _expected: &Header, _got: &Header) -> Result<(), Error> {
|
2016-03-04 11:56:04 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2020-07-29 10:36:15 +02:00
|
|
|
fn verify_block_external(
|
|
|
|
&self,
|
|
|
|
_header: &Header,
|
|
|
|
_engine: &dyn EthEngine,
|
|
|
|
) -> Result<(), Error> {
|
2017-04-13 20:31:29 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
2016-03-04 11:56:04 +01:00
|
|
|
}
|