[private-tx] remove unused rand (#11024)

This commit is contained in:
Niklas Adolfsson 2019-09-05 13:26:28 +02:00 committed by GitHub
parent d193ddde19
commit 8c286125e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 4 deletions

1
Cargo.lock generated
View File

@ -1382,7 +1382,6 @@ dependencies = [
"parity-util-mem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"patricia-trie-ethereum 0.1.0", "patricia-trie-ethereum 0.1.0",
"rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)",
"rlp 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rlp 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"rlp_derive 0.1.0", "rlp_derive 0.1.0",
"rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -36,7 +36,6 @@ parity-crypto = "0.4.0"
parking_lot = "0.8" parking_lot = "0.8"
trie-db = "0.15.0" trie-db = "0.15.0"
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" } patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
rand = "0.3"
rlp = "0.4.0" rlp = "0.4.0"
rlp_derive = { path = "../../util/rlp-derive" } rlp_derive = { path = "../../util/rlp-derive" }
rustc-hex = "1.0" rustc-hex = "1.0"

View File

@ -74,8 +74,6 @@ extern crate vm;
#[cfg(not(time_checked_add))] #[cfg(not(time_checked_add))]
extern crate time_utils; extern crate time_utils;
#[cfg(test)]
extern crate rand;
#[cfg(test)] #[cfg(test)]
extern crate env_logger; extern crate env_logger;