Rename codec -> substrate-codec, executor -> substrate-executor.

This commit is contained in:
Gav
2018-02-07 11:29:10 +01:00
parent 1b7f34bef2
commit c0d072a5f3
35 changed files with 116 additions and 115 deletions
+4 -4
View File
@@ -7,10 +7,10 @@ authors = ["Parity Technologies <admin@parity.io>"]
error-chain = "0.11"
jsonrpc-core = { git="https://github.com/paritytech/jsonrpc.git" }
jsonrpc-macros = { git="https://github.com/paritytech/jsonrpc.git" }
polkadot-client = { path = "../client", version = "0.1" }
polkadot-primitives = { path = "../primitives", version = "0.1" }
polkadot-state-machine = { path = "../state-machine", version = "0.1" }
polkadot-client = { path = "../client" }
polkadot-primitives = { path = "../primitives" }
polkadot-state-machine = { path = "../state-machine" }
[dev-dependencies]
assert_matches = "1.1"
polkadot-executor = { path = "../executor", version = "0.1" }
substrate-executor = { path = "../executor" }
+1 -1
View File
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
use polkadot_executor as executor;
use substrate_executor as executor;
use client;
use super::*;
+1 -1
View File
@@ -29,7 +29,7 @@ extern crate error_chain;
extern crate jsonrpc_macros;
#[cfg(test)]
extern crate polkadot_executor;
extern crate substrate_executor;
#[cfg(test)]
#[macro_use]
extern crate assert_matches;
+1 -1
View File
@@ -15,7 +15,7 @@
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
use super::*;
use polkadot_executor as executor;
use substrate_executor as executor;
use self::error::{Error, ErrorKind};
use client;