Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Commit f48780c

Browse files
authored
Update ethereum types to 0.8.0 version (#11139)
* Ethereum types updated to 0.8 version * Fix for rand usage in rpc * Cargo lock fixed after rebase * TODO added
1 parent 35513b1 commit f48780c

File tree

68 files changed

+395
-380
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+395
-380
lines changed

Cargo.lock

Lines changed: 230 additions & 218 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ ethcore-private-tx = { path = "ethcore/private-tx" }
3131
ethcore-secretstore = { path = "secret-store", optional = true }
3232
ethcore-service = { path = "ethcore/service" }
3333
ethcore-sync = { path = "ethcore/sync" }
34-
ethereum-types = "0.6.0"
34+
ethereum-types = "0.8.0"
3535
ethkey = { path = "accounts/ethkey" }
3636
ethstore = { path = "accounts/ethstore" }
3737
fdlimit = "0.1"
3838
futures = "0.1"
3939
journaldb = { path = "util/journaldb" }
4040
jsonrpc-core = "13.2.0"
41-
keccak-hash = "0.2.0"
41+
keccak-hash = "0.4.0"
4242
kvdb = "0.1"
4343
kvdb-rocksdb = "0.1.5"
4444
log = "0.4"

accounts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ serde_derive = "1.0"
1717
serde_json = "1.0"
1818

1919
[dev-dependencies]
20-
ethereum-types = "0.6.0"
20+
ethereum-types = "0.8.0"
2121
tempdir = "0.3"

accounts/ethkey/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
88
edit-distance = "2.0"
99
parity-crypto = "0.4.0"
1010
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1" }
11-
ethereum-types = "0.6.0"
11+
ethereum-types = "0.8.0"
1212
lazy_static = "1.0"
1313
log = "0.4"
1414
parity-wordlist = "1.3"

accounts/ethstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ time = "0.1.34"
1818
itertools = "0.5"
1919
parking_lot = "0.9"
2020
parity-crypto = "0.4.0"
21-
ethereum-types = "0.6.0"
21+
ethereum-types = "0.8.0"
2222
dir = { path = "../../util/dir" }
2323
smallvec = "0.6"
2424
parity-wordlist = "1.0"

cli-signer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version = "1.4.0"
77
authors = ["Parity <admin@parity.io>"]
88

99
[dependencies]
10-
ethereum-types = "0.6.0"
10+
ethereum-types = "0.8.0"
1111
futures = "0.1"
1212
rpassword = "1.0"
1313
parity-rpc = { path = "../rpc" }

cli-signer/rpc-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version = "1.4.0"
77
authors = ["Parity <admin@parity.io>"]
88

99
[dependencies]
10-
ethereum-types = "0.6.0"
10+
ethereum-types = "0.8.0"
1111
futures = "0.1"
1212
log = "0.4"
1313
serde = "1.0"
@@ -18,4 +18,4 @@ parking_lot = "0.9"
1818
jsonrpc-core = "13.2.0"
1919
jsonrpc-ws-server = "13.2.0"
2020
parity-rpc = { path = "../../rpc" }
21-
keccak-hash = "0.2.0"
21+
keccak-hash = "0.4.0"

ethash/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ authors = ["Parity Technologies <admin@parity.io>"]
77
[dependencies]
88
common-types = { path = "../ethcore/types" }
99
either = "1.0.0"
10-
ethereum-types = "0.6.0"
11-
keccak-hash = "0.2.0"
10+
ethereum-types = "0.8.0"
11+
keccak-hash = "0.4.0"
1212
log = "0.4"
1313
memmap = "0.6"
1414
parking_lot = "0.9"

ethcore/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ ethcore-db = { path = "./db" }
2424
ethcore-io = { path = "../util/io" }
2525
ethcore-miner = { path = "../miner" }
2626
ethcore-stratum = { path = "../miner/stratum", optional = true }
27-
ethereum-types = "0.6.0"
27+
ethereum-types = "0.8.0"
2828
evm = { path = "evm" }
2929
executive-state = { path = "executive-state" }
3030
futures = "0.1"
3131
hash-db = "0.15.0"
3232
itertools = "0.5"
3333
journaldb = { path = "../util/journaldb" }
34-
keccak-hash = "0.2.0"
34+
keccak-hash = "0.4.0"
3535
kvdb = "0.1"
3636
kvdb-memorydb = { version = "0.1.2", optional = true }
3737
kvdb-rocksdb = { version = "0.1.5", optional = true }

ethcore/account-db/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ version = "0.1.0"
77
edition = "2018"
88

99
[dependencies]
10-
ethereum-types = "0.6"
10+
ethereum-types = "0.8.0"
1111
hash-db = "0.15.0"
12-
keccak-hash = "0.2.0"
12+
keccak-hash = "0.4.0"
1313
keccak-hasher = { path = "../../util/keccak-hasher" }
1414
kvdb = "0.1"
1515
rlp = "0.4"

0 commit comments

Comments
 (0)