Add empty string for the KEY to serai-client to use the default keystore

This commit is contained in:
Luke Parker
2024-03-23 16:48:12 -04:00
parent bca3728a10
commit 2a31d8552e
3 changed files with 13 additions and 3 deletions

View File

@@ -100,7 +100,10 @@ async fn validator_set_rotation() {
"local".to_string(),
format!("--{name}"),
])
.replace_env(HashMap::from([("RUST_LOG=runtime".to_string(), "debug".to_string())]))
.replace_env(HashMap::from([
("RUST_LOG".to_string(), "runtime=debug".to_string()),
("KEY".to_string(), String::new()),
]))
.set_publish_all_ports(true)
.set_handle(handle(name))
.set_start_policy(StartPolicy::Strict)