1073d56245
* Verify private transaction before propagating * Private transactions queue reworked with tx pool queue direct usage * Styling fixed * Prevent resending private packets to the sender * Process signed private transaction packets via io queue * Test fixed * Build and test fixed after merge * Comments after review fixed * Signed transaction taken from verified * Fix after merge * Pool scoring generalized in order to use externally * Lib refactored according to the review comments * Ready state refactored * Redundant bound and copying removed * Fixed build after the merge * Forgotten case reworked * Review comments fixed * Logging reworked, target added * Fix after merge
44 lines
1.4 KiB
TOML
44 lines
1.4 KiB
TOML
[package]
|
|
description = "Parity Private Transactions"
|
|
name = "ethcore-private-tx"
|
|
version = "1.0.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
error-chain = { version = "0.12", default-features = false }
|
|
ethabi = "5.1"
|
|
ethabi-contract = "5.0"
|
|
ethabi-derive = "5.0"
|
|
ethcore = { path = ".." }
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
|
parity-crypto = { git = "https://github.com/paritytech/parity-common" }
|
|
ethcore-io = { path = "../../util/io" }
|
|
ethcore-logger = { path = "../../logger" }
|
|
ethcore-miner = { path = "../../miner" }
|
|
ethcore-transaction = { path = "../transaction" }
|
|
ethereum-types = "0.3"
|
|
ethjson = { path = "../../json" }
|
|
ethkey = { path = "../../ethkey" }
|
|
fetch = { path = "../../util/fetch" }
|
|
futures = "0.1"
|
|
heapsize = "0.4"
|
|
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
|
|
log = "0.4"
|
|
parking_lot = "0.6"
|
|
patricia-trie = { git = "https://github.com/paritytech/parity-common" }
|
|
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
|
|
rand = "0.3"
|
|
rlp = { git = "https://github.com/paritytech/parity-common" }
|
|
rlp_derive = { path = "../../util/rlp_derive" }
|
|
rustc-hex = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
tiny-keccak = "1.4"
|
|
transaction-pool = { path = "../../transaction-pool" }
|
|
url = "1"
|
|
|
|
[dev-dependencies]
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|