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
+1 -1
View File
@@ -45,7 +45,7 @@ mod tests {
use state_machine::execute;
use state_machine::OverlayedChanges;
use state_machine::backend::InMemory;
use polkadot_executor::executor;
use substrate_executor::executor;
use primitives::relay::{AccountId, Hash, BlockNumber, Header, Digest, UncheckedTransaction,
Transaction, Function};
use primitives::contract::CallData;
+2 -2
View File
@@ -21,8 +21,8 @@
extern crate polkadot_primitives as primitives;
extern crate polkadot_state_machine as state_machine;
extern crate polkadot_serializer as ser;
extern crate polkadot_codec as codec;
extern crate polkadot_executor;
extern crate substrate_codec as codec;
extern crate substrate_executor;
extern crate native_runtime;
extern crate ed25519;