mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 09:51:10 +00:00
[Companion] GRANDPA crate renaming (#6776)
* Companion for grandpa crate renaming * lock update
This commit is contained in:
Generated
+301
-301
File diff suppressed because it is too large
Load Diff
@@ -25,7 +25,7 @@ sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "mast
|
|||||||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ pub trait RuntimeApiCollection:
|
|||||||
sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>
|
sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>
|
||||||
+ sp_api::ApiExt<Block>
|
+ sp_api::ApiExt<Block>
|
||||||
+ sp_consensus_babe::BabeApi<Block>
|
+ sp_consensus_babe::BabeApi<Block>
|
||||||
+ sp_finality_grandpa::GrandpaApi<Block>
|
+ sp_consensus_grandpa::GrandpaApi<Block>
|
||||||
+ ParachainHost<Block>
|
+ ParachainHost<Block>
|
||||||
+ sp_block_builder::BlockBuilder<Block>
|
+ sp_block_builder::BlockBuilder<Block>
|
||||||
+ frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Nonce>
|
+ frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Nonce>
|
||||||
@@ -146,7 +146,7 @@ where
|
|||||||
Api: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>
|
Api: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>
|
||||||
+ sp_api::ApiExt<Block>
|
+ sp_api::ApiExt<Block>
|
||||||
+ sp_consensus_babe::BabeApi<Block>
|
+ sp_consensus_babe::BabeApi<Block>
|
||||||
+ sp_finality_grandpa::GrandpaApi<Block>
|
+ sp_consensus_grandpa::GrandpaApi<Block>
|
||||||
+ ParachainHost<Block>
|
+ ParachainHost<Block>
|
||||||
+ sp_block_builder::BlockBuilder<Block>
|
+ sp_block_builder::BlockBuilder<Block>
|
||||||
+ frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Nonce>
|
+ frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Nonce>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ sc-authority-discovery = { git = "https://github.com/paritytech/substrate", bran
|
|||||||
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", package = "sp-beefy" }
|
beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", package = "sp-beefy" }
|
||||||
beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
grandpa = { package = "sc-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
mmr-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
mmr-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master"}
|
sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master"}
|
||||||
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
@@ -35,7 +35,7 @@ telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/sub
|
|||||||
# Substrate Primitives
|
# Substrate Primitives
|
||||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
grandpa_primitives = { package = "sp-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|||||||
@@ -33,8 +33,8 @@ babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/par
|
|||||||
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
grandpa = { package = "sc-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
grandpa_primitives = { package = "sp-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|||||||
@@ -19,8 +19,8 @@ sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|||||||
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-consensus-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-consensus-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" }
|
txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" }
|
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ use jsonrpsee::RpcModule;
|
|||||||
use polkadot_primitives::{AccountId, Balance, Block, BlockNumber, Hash, Nonce};
|
use polkadot_primitives::{AccountId, Balance, Block, BlockNumber, Hash, Nonce};
|
||||||
use sc_client_api::AuxStore;
|
use sc_client_api::AuxStore;
|
||||||
use sc_consensus_babe::{BabeConfiguration, Epoch};
|
use sc_consensus_babe::{BabeConfiguration, Epoch};
|
||||||
use sc_finality_grandpa::FinalityProofProvider;
|
use sc_consensus_grandpa::FinalityProofProvider;
|
||||||
pub use sc_rpc::{DenyUnsafe, SubscriptionTaskExecutor};
|
pub use sc_rpc::{DenyUnsafe, SubscriptionTaskExecutor};
|
||||||
use sp_api::ProvideRuntimeApi;
|
use sp_api::ProvideRuntimeApi;
|
||||||
use sp_block_builder::BlockBuilder;
|
use sp_block_builder::BlockBuilder;
|
||||||
@@ -50,11 +50,11 @@ pub struct BabeDeps {
|
|||||||
/// Dependencies for GRANDPA
|
/// Dependencies for GRANDPA
|
||||||
pub struct GrandpaDeps<B> {
|
pub struct GrandpaDeps<B> {
|
||||||
/// Voting round info.
|
/// Voting round info.
|
||||||
pub shared_voter_state: sc_finality_grandpa::SharedVoterState,
|
pub shared_voter_state: sc_consensus_grandpa::SharedVoterState,
|
||||||
/// Authority set info.
|
/// Authority set info.
|
||||||
pub shared_authority_set: sc_finality_grandpa::SharedAuthoritySet<Hash, BlockNumber>,
|
pub shared_authority_set: sc_consensus_grandpa::SharedAuthoritySet<Hash, BlockNumber>,
|
||||||
/// Receives notifications about justification events from Grandpa.
|
/// Receives notifications about justification events from Grandpa.
|
||||||
pub justification_stream: sc_finality_grandpa::GrandpaJustificationStream<Block>,
|
pub justification_stream: sc_consensus_grandpa::GrandpaJustificationStream<Block>,
|
||||||
/// Executor to drive the subscription manager in the Grandpa RPC handler.
|
/// Executor to drive the subscription manager in the Grandpa RPC handler.
|
||||||
pub subscription_executor: sc_rpc::SubscriptionTaskExecutor,
|
pub subscription_executor: sc_rpc::SubscriptionTaskExecutor,
|
||||||
/// Finality proof provider.
|
/// Finality proof provider.
|
||||||
@@ -122,7 +122,7 @@ where
|
|||||||
use mmr_rpc::{Mmr, MmrApiServer};
|
use mmr_rpc::{Mmr, MmrApiServer};
|
||||||
use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer};
|
use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer};
|
||||||
use sc_consensus_babe_rpc::{Babe, BabeApiServer};
|
use sc_consensus_babe_rpc::{Babe, BabeApiServer};
|
||||||
use sc_finality_grandpa_rpc::{Grandpa, GrandpaApiServer};
|
use sc_consensus_grandpa_rpc::{Grandpa, GrandpaApiServer};
|
||||||
use sc_sync_state_rpc::{SyncState, SyncStateApiServer};
|
use sc_sync_state_rpc::{SyncState, SyncStateApiServer};
|
||||||
use substrate_state_trie_migration_rpc::{StateMigration, StateMigrationApiServer};
|
use substrate_state_trie_migration_rpc::{StateMigration, StateMigrationApiServer};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user