Rename polkadot-state-machine -> substrate-state-machine

This commit is contained in:
Gav
2018-02-07 11:44:32 +01:00
parent 43ef2ca6f3
commit 6071774f57
17 changed files with 51 additions and 51 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ rustc_version = "0.2"
pwasm-alloc = { path = "../wasm-runtime/pwasm-alloc", version = "0.1" }
pwasm-libc = { path = "../wasm-runtime/pwasm-libc", version = "0.1" }
environmental = { path = "../environmental", version = "0.1", optional = true }
polkadot-state-machine = { path = "../state-machine", version = "0.1", optional = true }
substrate-state-machine = { path = "../state-machine", version = "0.1", optional = true }
substrate-primitives = { path = "../primitives", version = "0.1", default_features = false }
substrate-codec = { path = "../codec", version = "0.1", default_features = false }
triehash = { version = "0.1", optional = true }
@@ -21,7 +21,7 @@ ed25519 = { path = "../ed25519", version = "0.1", optional = true }
default = ["std"]
std = [
"environmental",
"polkadot-state-machine",
"substrate-state-machine",
"triehash",
"substrate-primitives/std",
"substrate-codec/std",
+2 -2
View File
@@ -17,7 +17,7 @@
#[macro_use]
extern crate environmental;
extern crate polkadot_state_machine;
extern crate substrate_state_machine;
extern crate substrate_primitives as primitives;
extern crate triehash;
extern crate ed25519;
@@ -32,7 +32,7 @@ pub use std::mem;
// re-export hashing functions.
pub use primitives::{blake2_256, twox_128, twox_256};
pub use polkadot_state_machine::{Externalities, ExternalitiesError, TestExternalities};
pub use substrate_state_machine::{Externalities, ExternalitiesError, TestExternalities};
use primitives::hexdisplay::HexDisplay;
// TODO: use the real error, not NoError.