mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-30 07:17:26 +00:00
22586113ea
* GrandpaLightBlockImport * extract authorities in AuraVerifier * post-merge fix * restore authorities cache * license * new finality proof draft * generalized PendingJustifications * finality proof messages * fixed compilation * pass verifier to import_finality_proof * do not fetch remote proof from light import directly * FinalityProofProvider * fixed authorities cache test * restored finality proof tests * finality_proof docs * use DB backend in test client * justification_is_fetched_by_light_client_when_consensus_data_changes * restore justification_is_fetched_by_light_client_when_consensus_data_changes * some more tests * added authorities-related TODO * removed unneeded clear_finality_proof_requests field * truncated some long lines * more granular light import tests * only provide finality proof if it is generated by the requested set * post-merge fix * finality_proof_is_none_if_first_justification_is_generated_by_unknown_set * make light+grandpa test rely on finality proofs (instead of simple justifications) * empty_finality_proof_is_returned_to_light_client_when_authority_set_is_different * missing trait method impl * fixed proof-of-finality docs * one more doc fix * fix docs * initialize authorities cache (post-merge fix) * fixed cache initialization (post-merge fix) * post-fix merge: fix light + GRANDPA tests (bad way) * proper fix of empty_finality_proof_is_returned_to_light_client_when_authority_set_is_different * fixed easy grumbles * import finality proofs in BlockImportWorker thread * allow import of finality proofs for non-requested blocks * limit number of fragments in finality proof * GRANDPA post-merge fix * BABE: pos-merge fix
50 lines
1.6 KiB
Rust
50 lines
1.6 KiB
Rust
// Copyright 2018-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate 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.
|
|
|
|
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/// Integrate grandpa finality with substrate service
|
|
|
|
use client;
|
|
use service::{FullBackend, FullExecutor, LightBackend, LightExecutor, ServiceFactory};
|
|
|
|
pub type BlockImportForService<F> = crate::GrandpaBlockImport<
|
|
FullBackend<F>,
|
|
FullExecutor<F>,
|
|
<F as ServiceFactory>::Block,
|
|
<F as ServiceFactory>::RuntimeApi,
|
|
client::Client<
|
|
FullBackend<F>,
|
|
FullExecutor<F>,
|
|
<F as ServiceFactory>::Block,
|
|
<F as ServiceFactory>::RuntimeApi
|
|
>,
|
|
<F as ServiceFactory>::SelectChain,
|
|
>;
|
|
|
|
pub type LinkHalfForService<F> = crate::LinkHalf<
|
|
FullBackend<F>,
|
|
FullExecutor<F>,
|
|
<F as ServiceFactory>::Block,
|
|
<F as ServiceFactory>::RuntimeApi,
|
|
<F as ServiceFactory>::SelectChain
|
|
>;
|
|
|
|
pub type BlockImportForLightService<F> = crate::light_import::GrandpaLightBlockImport<
|
|
LightBackend<F>,
|
|
LightExecutor<F>,
|
|
<F as ServiceFactory>::Block,
|
|
<F as ServiceFactory>::RuntimeApi,
|
|
>;
|