mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-08-02 18:05:41 +00:00
2a6b065a91
* Decouple `relays/client-substrate` from `headers_relay`
* Remove `blocks_in_state` from `SyncLoopMetrics`
This metric was only relevant for PoA <> Substrate bridge.
* Move `sync_loop_metrics.rs` to `relays/finality`
* Remove unused `SyncLoopMetrics::update()`
* Hook up SyncLoopMetrics to finality_loop
* Delete now unused `relays/headers`
Signed-off-by: acatangiu <adrian@parity.io>
56 lines
1.7 KiB
Rust
56 lines
1.7 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::find_grandpa_authorities_scheduled_change;
|
|
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> FinalitySourceHeader<Header::Number> for SyncHeader<Header> {
|
|
fn number(&self) -> Header::Number {
|
|
*self.0.number()
|
|
}
|
|
|
|
fn is_mandatory(&self) -> bool {
|
|
find_grandpa_authorities_scheduled_change(&self.0).is_some()
|
|
}
|
|
}
|