2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-03-04 11:56:04 +01:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. 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.
|
|
|
|
|
2018-03-03 18:42:13 +01:00
|
|
|
use client::{BlockInfo, CallContract};
|
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;
|
2017-09-26 14:19:08 +02:00
|
|
|
use super::{verification, Verifier};
|
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,
|
|
|
|
_: &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(())
|
|
|
|
}
|
|
|
|
|
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(())
|
|
|
|
}
|
2017-04-13 20:31:29 +02:00
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
fn verify_block_external(&self, _header: &Header, _engine: &EthEngine) -> Result<(), Error> {
|
2017-04-13 20:31:29 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
2016-03-04 11:56:04 +01:00
|
|
|
}
|