[easy] ethcore-bloom-journal
was renamed to accounts-bloom
(#11605)
It fixes #11585.
This commit is contained in:
parent
b683c22c98
commit
5627f049a7
18
Cargo.lock
generated
18
Cargo.lock
generated
@ -40,6 +40,13 @@ dependencies = [
|
|||||||
"trie-vm-factories",
|
"trie-vm-factories",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "accounts-bloom"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"siphasher",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aes"
|
name = "aes"
|
||||||
version = "0.3.2"
|
version = "0.3.2"
|
||||||
@ -1302,13 +1309,6 @@ dependencies = [
|
|||||||
"triehash-ethereum",
|
"triehash-ethereum",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "ethcore-bloom-journal"
|
|
||||||
version = "0.1.0"
|
|
||||||
dependencies = [
|
|
||||||
"siphasher",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethcore-builtin"
|
name = "ethcore-builtin"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
@ -4689,6 +4689,7 @@ version = "0.1.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"account-db",
|
"account-db",
|
||||||
"account-state",
|
"account-state",
|
||||||
|
"accounts-bloom",
|
||||||
"client-traits",
|
"client-traits",
|
||||||
"common-types",
|
"common-types",
|
||||||
"criterion",
|
"criterion",
|
||||||
@ -4701,7 +4702,6 @@ dependencies = [
|
|||||||
"ethcore",
|
"ethcore",
|
||||||
"ethcore-accounts",
|
"ethcore-accounts",
|
||||||
"ethcore-blockchain",
|
"ethcore-blockchain",
|
||||||
"ethcore-bloom-journal",
|
|
||||||
"ethcore-db",
|
"ethcore-db",
|
||||||
"ethcore-io",
|
"ethcore-io",
|
||||||
"ethereum-types",
|
"ethereum-types",
|
||||||
@ -4845,10 +4845,10 @@ name = "state-db"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"account-state",
|
"account-state",
|
||||||
|
"accounts-bloom",
|
||||||
"common-types",
|
"common-types",
|
||||||
"env_logger 0.5.13",
|
"env_logger 0.5.13",
|
||||||
"ethcore",
|
"ethcore",
|
||||||
"ethcore-bloom-journal",
|
|
||||||
"ethcore-db",
|
"ethcore-db",
|
||||||
"ethereum-types",
|
"ethereum-types",
|
||||||
"hash-db",
|
"hash-db",
|
||||||
|
@ -288,7 +288,7 @@ Caching, Importing Blocks, and Block Information
|
|||||||
```
|
```
|
||||||
* OpenEthereum Core Libraries (`util`)
|
* OpenEthereum Core Libraries (`util`)
|
||||||
```bash
|
```bash
|
||||||
ethcore-bloom-journal blooms-db dir eip-712 fake-fetch fastmap fetch ethcore-io
|
accounts-bloom blooms-db dir eip-712 fake-fetch fastmap fetch ethcore-io
|
||||||
journaldb keccak-hasher len-caching-lock memory-cache memzero
|
journaldb keccak-hasher len-caching-lock memory-cache memzero
|
||||||
migration-rocksdb ethcore-network ethcore-network-devp2p panic_hook
|
migration-rocksdb ethcore-network ethcore-network-devp2p panic_hook
|
||||||
patricia-trie-ethereum registrar rlp_compress stats
|
patricia-trie-ethereum registrar rlp_compress stats
|
||||||
|
@ -14,7 +14,7 @@ harness = false
|
|||||||
account-db = { path = "../account-db" }
|
account-db = { path = "../account-db" }
|
||||||
account-state = { path = "../account-state" }
|
account-state = { path = "../account-state" }
|
||||||
blockchain = { package = "ethcore-blockchain", path = "../blockchain" }
|
blockchain = { package = "ethcore-blockchain", path = "../blockchain" }
|
||||||
bloom-journal = { package = "ethcore-bloom-journal", path = "../../util/bloom" }
|
bloom-journal = { package = "accounts-bloom", path = "../../util/bloom" }
|
||||||
bytes = { package = "parity-bytes", version = "0.1.0" }
|
bytes = { package = "parity-bytes", version = "0.1.0" }
|
||||||
client-traits = { path = "../client-traits" }
|
client-traits = { path = "../client-traits" }
|
||||||
common-types = { path = "../types" }
|
common-types = { path = "../types" }
|
||||||
|
@ -8,7 +8,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
account-state = { path = "../account-state" }
|
account-state = { path = "../account-state" }
|
||||||
bloom_journal = { package = "ethcore-bloom-journal", path = "../../util/bloom" }
|
bloom_journal = { package = "accounts-bloom", path = "../../util/bloom" }
|
||||||
common-types = { path = "../types"}
|
common-types = { path = "../types"}
|
||||||
ethcore-db = { path = "../db" }
|
ethcore-db = { path = "../db" }
|
||||||
ethereum-types = "0.8.0"
|
ethereum-types = "0.8.0"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ethcore-bloom-journal"
|
name = "accounts-bloom"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "Journaling bloom filter"
|
description = "Journaling bloom filter"
|
||||||
|
Loading…
Reference in New Issue
Block a user