From 6e31cd7af7e494bcf778dda7fbcf53e902fd77c8 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Thu, 13 Feb 2020 17:26:56 +0300 Subject: [PATCH] reference sc-service with rocksdb feature (#4918) --- substrate/Cargo.lock | 1 + substrate/bin/node/testing/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/substrate/Cargo.lock b/substrate/Cargo.lock index d3fe6848e4..1adf990df0 100644 --- a/substrate/Cargo.lock +++ b/substrate/Cargo.lock @@ -3650,6 +3650,7 @@ dependencies = [ "sc-client-api", "sc-client-db", "sc-executor", + "sc-service", "sp-api", "sp-block-builder", "sp-blockchain", diff --git a/substrate/bin/node/testing/Cargo.toml b/substrate/bin/node/testing/Cargo.toml index e41af71571..558c8f2f0b 100644 --- a/substrate/bin/node/testing/Cargo.toml +++ b/substrate/bin/node/testing/Cargo.toml @@ -48,6 +48,7 @@ tempdir = "0.3" fs_extra = "1" hex-literal = "0.2.1" sc-cli = { version = "0.8.0", path = "../../../client/cli" } +sc-service = { version = "0.8.0", path = "../../../client/service", features = ["rocksdb"] } [[bench]] name = "import"