[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",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "accounts-bloom"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"siphasher",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "aes"
|
||||
version = "0.3.2"
|
||||
@ -1302,13 +1309,6 @@ dependencies = [
|
||||
"triehash-ethereum",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ethcore-bloom-journal"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"siphasher",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ethcore-builtin"
|
||||
version = "0.1.0"
|
||||
@ -4689,6 +4689,7 @@ version = "0.1.0"
|
||||
dependencies = [
|
||||
"account-db",
|
||||
"account-state",
|
||||
"accounts-bloom",
|
||||
"client-traits",
|
||||
"common-types",
|
||||
"criterion",
|
||||
@ -4701,7 +4702,6 @@ dependencies = [
|
||||
"ethcore",
|
||||
"ethcore-accounts",
|
||||
"ethcore-blockchain",
|
||||
"ethcore-bloom-journal",
|
||||
"ethcore-db",
|
||||
"ethcore-io",
|
||||
"ethereum-types",
|
||||
@ -4845,10 +4845,10 @@ name = "state-db"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"account-state",
|
||||
"accounts-bloom",
|
||||
"common-types",
|
||||
"env_logger 0.5.13",
|
||||
"ethcore",
|
||||
"ethcore-bloom-journal",
|
||||
"ethcore-db",
|
||||
"ethereum-types",
|
||||
"hash-db",
|
||||
|
@ -288,7 +288,7 @@ Caching, Importing Blocks, and Block Information
|
||||
```
|
||||
* OpenEthereum Core Libraries (`util`)
|
||||
```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
|
||||
migration-rocksdb ethcore-network ethcore-network-devp2p panic_hook
|
||||
patricia-trie-ethereum registrar rlp_compress stats
|
||||
|
@ -14,7 +14,7 @@ harness = false
|
||||
account-db = { path = "../account-db" }
|
||||
account-state = { path = "../account-state" }
|
||||
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" }
|
||||
client-traits = { path = "../client-traits" }
|
||||
common-types = { path = "../types" }
|
||||
|
@ -8,7 +8,7 @@ edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
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"}
|
||||
ethcore-db = { path = "../db" }
|
||||
ethereum-types = "0.8.0"
|
||||
|
@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "ethcore-bloom-journal"
|
||||
name = "accounts-bloom"
|
||||
version = "0.1.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Journaling bloom filter"
|
||||
|
Loading…
Reference in New Issue
Block a user