mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 23:07:57 +00:00
73837c384e
Prevents the StateDbError::TooManySiblingBlocks error from being triggered by eagerly removing stale blocks from the backend on block import and before the error condition is met. Introduces a just in time block recovery mechanism for blocks that were wrongly removed via an explicit pov-recovery method Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
35 lines
1.6 KiB
TOML
35 lines
1.6 KiB
TOML
[package]
|
|
name = "cumulus-client-service"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
parking_lot = "0.12.1"
|
|
futures = "0.3.24"
|
|
|
|
# Substrate
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Cumulus
|
|
cumulus-client-cli = { path = "../cli" }
|
|
cumulus-client-collator = { path = "../collator" }
|
|
cumulus-client-consensus-common = { path = "../consensus/common" }
|
|
cumulus-client-pov-recovery = { path = "../pov-recovery" }
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
|
|
cumulus-relay-chain-inprocess-interface = { path = "../relay-chain-inprocess-interface" }
|
|
cumulus-relay-chain-minimal-node = { path = "../relay-chain-minimal-node" }
|