mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 19:57:59 +00:00
01538bc5fa
* SignedBlock: get justification by consensus engine id * Define ConsensusLogReader Making the check for authority changes more generic * cod review changes
62 lines
1.8 KiB
Rust
62 lines
1.8 KiB
Rust
// Copyright 2019-2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Bridges Common.
|
|
|
|
// Parity Bridges Common 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 Bridges Common 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 Bridges Common. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use bp_header_chain::ConsensusLogReader;
|
|
use finality_relay::SourceHeader as FinalitySourceHeader;
|
|
use sp_runtime::traits::Header as HeaderT;
|
|
|
|
/// Generic wrapper for `sp_runtime::traits::Header` based headers, that
|
|
/// implements `finality_relay::SourceHeader` and may be used in headers sync directly.
|
|
#[derive(Clone, Debug, PartialEq)]
|
|
pub struct SyncHeader<Header>(Header);
|
|
|
|
impl<Header> SyncHeader<Header> {
|
|
/// Extracts wrapped header from self.
|
|
pub fn into_inner(self) -> Header {
|
|
self.0
|
|
}
|
|
}
|
|
|
|
impl<Header> std::ops::Deref for SyncHeader<Header> {
|
|
type Target = Header;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl<Header> From<Header> for SyncHeader<Header> {
|
|
fn from(header: Header) -> Self {
|
|
Self(header)
|
|
}
|
|
}
|
|
|
|
impl<Header: HeaderT, R: ConsensusLogReader> FinalitySourceHeader<Header::Hash, Header::Number, R>
|
|
for SyncHeader<Header>
|
|
{
|
|
fn hash(&self) -> Header::Hash {
|
|
self.0.hash()
|
|
}
|
|
|
|
fn number(&self) -> Header::Number {
|
|
*self.0.number()
|
|
}
|
|
|
|
fn is_mandatory(&self) -> bool {
|
|
R::schedules_authorities_change(self.digest())
|
|
}
|
|
}
|