Add keystore export flag to VC

This commit is contained in:
Paul Hauner
2022-08-25 15:47:18 +10:00
parent e8da2810ee
commit 1f8f12541b
3 changed files with 29 additions and 0 deletions

View File

@@ -255,6 +255,10 @@ impl Config {
config.http_api.allow_origin = Some(allow_origin.to_string());
}
if cli_args.is_present("http-allow-keystore-export") {
config.http_api.allow_keystore_export = true;
}
/*
* Prometheus metrics HTTP server
*/