From f27a7debad651db3a616224d456b78b6e97a0fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Tue, 21 Jan 2020 13:44:56 +0100 Subject: [PATCH] Fix missing keystore config in test collator (#46) --- cumulus/test/parachain/src/cli.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cumulus/test/parachain/src/cli.rs b/cumulus/test/parachain/src/cli.rs index 9304c5eb7d..ed7a4af9f5 100644 --- a/cumulus/test/parachain/src/cli.rs +++ b/cumulus/test/parachain/src/cli.rs @@ -109,6 +109,11 @@ where cache_size: Default::default(), path: config_dir.join("db"), }; + + polkadot_config.keystore = sc_service::config::KeystoreConfig::Path { + path: config_dir.join("keystore"), + password: None, + }; } match config.roles {