Fix missing keystore config in test collator (#46)

This commit is contained in:
Bastian Köcher
2020-01-21 13:44:56 +01:00
committed by GitHub
parent 6dc3a76293
commit f27a7debad
+5
View File
@@ -109,6 +109,11 @@ where
cache_size: Default::default(), cache_size: Default::default(),
path: config_dir.join("db"), path: config_dir.join("db"),
}; };
polkadot_config.keystore = sc_service::config::KeystoreConfig::Path {
path: config_dir.join("keystore"),
password: None,
};
} }
match config.roles { match config.roles {