Moves polkadot/keystore to substrate (#221)

* Moves polkadot/keystore to substrate

* Fixes email

* Fixes header comment
This commit is contained in:
Dmitry Kashitsyn
2018-06-19 16:28:43 +07:00
committed by Gav Wood
parent ac0b8b1b45
commit a5eb2643e9
6 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ polkadot-consensus = { path = "../consensus" }
polkadot-executor = { path = "../executor" }
polkadot-api = { path = "../api" }
polkadot-transaction-pool = { path = "../transaction-pool" }
polkadot-keystore = { path = "../keystore" }
substrate-keystore = { path = "../../substrate/keystore" }
substrate-runtime-io = { path = "../../substrate/runtime-io" }
substrate-primitives = { path = "../../substrate/primitives" }
substrate-network = { path = "../../substrate/network" }
+1 -1
View File
@@ -28,7 +28,7 @@ extern crate polkadot_executor;
extern crate polkadot_api;
extern crate polkadot_consensus as consensus;
extern crate polkadot_transaction_pool as transaction_pool;
extern crate polkadot_keystore as keystore;
extern crate substrate_keystore as keystore;
extern crate substrate_runtime_io as runtime_io;
extern crate substrate_primitives as primitives;
extern crate substrate_network as network;