From 7658eb6b88ea73e652998ac4126059bbc8407c78 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Mon, 29 Jul 2019 20:43:03 +0200 Subject: [PATCH] Fix master (#3242) --- substrate/core/client/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/core/client/src/lib.rs b/substrate/core/client/src/lib.rs index 595bf55b32..a1351f20e4 100644 --- a/substrate/core/client/src/lib.rs +++ b/substrate/core/client/src/lib.rs @@ -49,7 +49,7 @@ //! use std::sync::Arc; //! use substrate_client::{Client, in_mem::Backend, LocalCallExecutor}; //! use primitives::Blake2Hasher; -//! use runtime_primitives::{StorageOverlay, ChildrenStorageOverlay}; +//! use sr_primitives::{StorageOverlay, ChildrenStorageOverlay}; //! use executor::NativeExecutor; //! //! // In this example, we're using the `Block` and `RuntimeApi` types from the