From 704b25d12320a53e3253e9e24eb3da098ac6766a 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) --- test/parachain/src/cli.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/parachain/src/cli.rs b/test/parachain/src/cli.rs index 9304c5eb7d..ed7a4af9f5 100644 --- a/test/parachain/src/cli.rs +++ b/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 {