mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-01 10:07:24 +00:00
9cea98e950
* 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
27 lines
860 B
TOML
27 lines
860 B
TOML
[package]
|
|
name = "sc-transaction-pool"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
derive_more = "0.99.2"
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
log = "0.4.8"
|
|
parking_lot = "0.9.0"
|
|
sp-core = { path = "../../primitives/core" }
|
|
sp-api = { path = "../../primitives/api" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sc-transaction-graph = { path = "./graph" }
|
|
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
|
sc-client-api = { path = "../api" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
|
|
|
[features]
|
|
test-helpers = []
|