mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 00:01:03 +00:00
Manual Seal (#4143)
* instant/manual seal unbounded queues are evil Apply suggestions from code review Co-Authored-By: Robert Habermeier <rphmeier@gmail.com> add fork tests, docs, remove todos moar docs Update client/consensus/manual-seal/src/rpc.rs Co-Authored-By: Robert Habermeier <rphmeier@gmail.com> remove unbound generic, parameter, docs, deps, code style changes Apply suggestions from code review Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> code style chnges remove unused deps, remove dep renames, check if block is empty before importing, use ? for error propagation fix tests log errors for instant seal use debug code style changes, updated copyright dates use txpool::Pool instead of BasicPool, code style changes fixed tests * fix tests * requested changes from review * check inherents len * rebase
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
[package]
|
||||
name = "sc-consensus-manual-seal"
|
||||
version = "0.8.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Manual sealing engine for Substrate"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
derive_more = "0.99.2"
|
||||
futures = "0.3.1"
|
||||
jsonrpc-core = "14.0.5"
|
||||
jsonrpc-core-client = "14.0.5"
|
||||
jsonrpc-derive = "14.0.5"
|
||||
log = "0.4.8"
|
||||
parking_lot = "0.10"
|
||||
serde = { version = "1.0", features=["derive"] }
|
||||
|
||||
sc-client = { path = "../../../client" }
|
||||
sc-client-api = { path = "../../../client/api" }
|
||||
sc-transaction-pool = { path = "../../transaction-pool", features = ["test-helpers"] }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-transaction-pool = { path = "../../../primitives/transaction-pool" }
|
||||
|
||||
[dev-dependencies]
|
||||
sc-basic-authorship = { path = "../../basic-authorship" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
tokio = { version = "0.2", features = ["rt-core", "macros"] }
|
||||
env_logger = "0.7.0"
|
||||
tempfile = "3.1.0"
|
||||
Reference in New Issue
Block a user