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

secret store separated from util #1304

Merged
merged 30 commits into from
Jun 19, 2016
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3047d7c
bump rust-crypto
debris Jun 14, 2016
eb388da
initial version of account provider utilizing secret store
debris Jun 14, 2016
bad0a56
Merge branch 'master' into new_sstore
debris Jun 15, 2016
db689b3
update lazy_static to latest version
debris Jun 15, 2016
6c2fa56
AccountProvider accounts method
debris Jun 15, 2016
1c285b2
new AccountProvider tests in progress
debris Jun 15, 2016
bef87d3
basic tests for new AccountProvider
debris Jun 15, 2016
5dbec38
ethcore compiles with new account provider and secret store
debris Jun 15, 2016
821bed6
ethcore-rpc build now compiling with new AccountProvider
debris Jun 15, 2016
6360e80
most rpc tests passing with new accounts_provider
debris Jun 15, 2016
20b08ab
Merge branch 'master' of github.com:ethcore/parity into new_sstore
debris Jun 16, 2016
853c17d
fixed basic_authority tests
debris Jun 16, 2016
64411b9
fixed eth_transaction_count rpc test
debris Jun 16, 2016
3fa29ae
fixed mocked/eth.rs tests
debris Jun 16, 2016
d8d555d
fixed personal tests
debris Jun 16, 2016
1cca9b2
fixed personal signer rpc tests
debris Jun 16, 2016
f5b34bc
removed warnings
debris Jun 16, 2016
4a0b5ce
parity compiling fine with new sstore
debris Jun 16, 2016
eb82597
Merge branch 'master' of github.com:ethcore/parity into new_sstore
debris Jun 16, 2016
c5e247b
Merge branch 'master' of github.com:ethcore/parity into new_sstore
debris Jun 18, 2016
e77ec2c
fixed import direction
debris Jun 18, 2016
12302ab
do not unlock temporarily when we have the password
debris Jun 18, 2016
3e29e3c
removed TODO in account import
debris Jun 18, 2016
2cea880
display warning on auto account import failure
debris Jun 18, 2016
f423d59
fixed compiling of ethstore on windows
debris Jun 18, 2016
7de77f8
Merge branch 'master' of github.com:ethcore/parity into new_sstore
debris Jun 18, 2016
9486426
ethstore as a part of parity repo
debris Jun 18, 2016
1b79de4
added ethkey
debris Jun 18, 2016
718d221
Merge branch 'master' of github.com:ethcore/parity into new_sstore
debris Jun 19, 2016
e672290
Merge branch 'master' of github.com:ethcore/parity into new_sstore
debris Jun 19, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 62 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion ethcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ ethash = { path = "../ethash" }
num_cpus = "0.2"
clippy = { version = "0.0.76", optional = true}
crossbeam = "0.2.9"
lazy_static = "0.1"
lazy_static = "0.2"
ethcore-devtools = { path = "../devtools" }
ethjson = { path = "../json" }
bloomchain = "0.1"
"ethcore-ipc" = { path = "../ipc/rpc" }
rayon = "0.3.1"
ethstore = { git = "https://github.com/ethcore/ethstore.git" }

[features]
jit = ["evmjit"]
Expand Down
Loading