-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Conversation
It looks like @0x7CFE hasn'signed our Contributor License Agreement, yet.
You can read and sign our full Contributor License Agreement at the following URL: https://cla.parity.io Once you've signed, plesae reply to this thread with Many thanks, Parity Technologies CLA Bot |
Note: didn't checked for now redundant references to |
[clabot:check] |
It looks like @0x7CFE hasn'signed our Contributor License Agreement, yet.
You can read and sign our full Contributor License Agreement at the following URL: https://cla.parity.io Once you've signed, plesae reply to this thread with Many thanks, Parity Technologies CLA Bot |
Gosh, CLA bot is stubborn :D |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, there are just two more lines which need to be removed:
util/Cargo.toml:27:lru-cache = "0.1.0"
util/src/lib.rs:103:extern crate lru_cache;
ethcore/Cargo.toml
Outdated
@@ -32,6 +32,7 @@ ethcore-logger = { path = "../logger" } | |||
ethcore-stratum = { path = "../stratum" } | |||
ethcore-util = { path = "../util" } | |||
ethcore-bigint = { path = "../util/bigint" } | |||
memory_cache = { path = "../util/memory_cache" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see above lines: naming convention for crates is with dashes, not hyphens.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actually, we are very inconstant with it. e.g. rlp_derive
, semantic_version
, rpc_cli
, secret_store
and so on...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
786ea98
to
e7690ab
Compare
Removed dependencies to |
Affects #6693.
MemoryLruCache
was extracted fromutil/src
into separate crateutil/memory_cache
. Also, references inethcore
was altered to reflect this change.