Migrate executor, xinherens, keyring and keystore to 2018 edition (#1585)

This commit is contained in:
Stanislav Tkach
2019-01-29 15:30:07 +02:00
committed by Gav Wood
parent ecffe0c371
commit e6839d2d41
14 changed files with 42 additions and 80 deletions
+3 -3
View File
@@ -20,9 +20,9 @@
use std::collections::HashMap;
use std::rc::Rc;
use codec::{Decode, Encode};
use parity_codec::{Decode, Encode};
use primitives::sandbox as sandbox_primitives;
use wasm_utils::UserError;
use crate::wasm_utils::UserError;
use wasmi;
use wasmi::memory_units::Pages;
use wasmi::{
@@ -558,7 +558,7 @@ impl Store {
#[cfg(test)]
mod tests {
use primitives::{Blake2Hasher};
use wasm_executor::WasmExecutor;
use crate::wasm_executor::WasmExecutor;
use state_machine::TestExternalities;
use wabt;