mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 19:51:02 +00:00
59adb4767b
* Use latest version of txpool. * Initial version of the pool. * Fix abstraction. * Implement watchers and notifications. * Return hash from RPC. * Remove commented code. * Remove client dep. * Fix tests.
18 lines
661 B
TOML
18 lines
661 B
TOML
[package]
|
|
name = "polkadot-transaction-pool"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
log = "0.3.0"
|
|
error-chain = "0.11"
|
|
polkadot-api = { path = "../api" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
substrate-client = { path = "../../substrate/client" }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-extrinsic-pool = { path = "../../substrate/extrinsic-pool" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
|
ed25519 = { path = "../../substrate/ed25519" }
|