Skip to content

Commit

Permalink
add TransactionPool (paritytech#2)
Browse files Browse the repository at this point in the history
* add pool

* change "exchange-*" -> "chainx-*"

* change "exchange-*" -> "chainx-*" in pool/src

* parity -> chainx-org

* delete unless message

* update Cargo.lock

* Delete dead import

* poolapi

* Add extrinsic pool and build ok

* Eliminate the warning

* Format code

* delete version
  • Loading branch information
eee-byte authored and gguoss committed Aug 28, 2018
1 parent 4ed5318 commit e77503a
Show file tree
Hide file tree
Showing 12 changed files with 882 additions and 889 deletions.
579 changes: 335 additions & 244 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ chainx-primitives = {path = "./primitives"}
chainx-runtime = {path = "./runtime"}
chainx-executor = {path = "./executor"}
chainx-rpc = {path = "./rpc"}
chainx-pool = {path = "./pool"}
hex-literal = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
futures = "0.1.17"
Expand All @@ -37,4 +38,5 @@ members = [
"runtime",
"executor",
"rpc",
"pool",
]
15 changes: 0 additions & 15 deletions executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,6 @@ version = "0.1.0"
authors = ["Chainpool <http://www.chainx.org>"]

[dependencies]
hex-literal = "0.1"
triehash = { version = "0.1" }
ed25519 = { git = "https://github.com/chainx-org/substrate" }
substrate-codec = { git = "https://github.com/chainx-org/substrate" }
substrate-runtime-io = { git = "https://github.com/chainx-org/substrate" }
substrate-runtime-support = { git = "https://github.com/chainx-org/substrate" }
substrate-state-machine = { git = "https://github.com/chainx-org/substrate" }
substrate-executor = { git = "https://github.com/chainx-org/substrate" }
substrate-primitives = { git = "https://github.com/chainx-org/substrate" }
chainx-primitives = { path = "../primitives" }
chainx-runtime = { path = "../runtime" }

[dev-dependencies]
substrate-keyring = { git = "https://github.com/chainx-org/substrate" }
substrate-runtime-primitives = { git = "https://github.com/chainx-org/substrate" }
substrate-runtime-staking = { git = "https://github.com/chainx-org/substrate" }
substrate-runtime-system = { git = "https://github.com/chainx-org/substrate" }
substrate-runtime-consensus = { git = "https://github.com/chainx-org/substrate" }
Loading

0 comments on commit e77503a

Please sign in to comment.