mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
Companion for: MMR: move RPC code from frame/ to client/ (#6369)
* rpc: mmr rpc crate name change
* update lockfile for {"substrate"}
Co-authored-by: parity-processbot <>
This commit is contained in:
Generated
+197
-197
File diff suppressed because it is too large
Load Diff
@@ -24,7 +24,7 @@ sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", bra
|
|||||||
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" }
|
||||||
pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
pallet-transaction-payment-rpc = { 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" }
|
||||||
beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ where
|
|||||||
+ Sync
|
+ Sync
|
||||||
+ 'static,
|
+ 'static,
|
||||||
C::Api: frame_rpc_system::AccountNonceApi<Block, AccountId, Nonce>,
|
C::Api: frame_rpc_system::AccountNonceApi<Block, AccountId, Nonce>,
|
||||||
C::Api: pallet_mmr_rpc::MmrRuntimeApi<
|
C::Api: mmr_rpc::MmrRuntimeApi<
|
||||||
Block,
|
Block,
|
||||||
<Block as sp_runtime::traits::Block>::Hash,
|
<Block as sp_runtime::traits::Block>::Hash,
|
||||||
BlockNumber,
|
BlockNumber,
|
||||||
@@ -123,7 +123,7 @@ where
|
|||||||
{
|
{
|
||||||
use beefy_gadget_rpc::{Beefy, BeefyApiServer};
|
use beefy_gadget_rpc::{Beefy, BeefyApiServer};
|
||||||
use frame_rpc_system::{System, SystemApiServer};
|
use frame_rpc_system::{System, SystemApiServer};
|
||||||
use pallet_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_finality_grandpa_rpc::{Grandpa, GrandpaApiServer};
|
||||||
|
|||||||
Reference in New Issue
Block a user