We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4713e9 commit 44e1dceCopy full SHA for 44e1dce
crates/challenge-orchestrator/src/docker.rs
@@ -550,6 +550,10 @@ impl DockerClient {
550
if let Ok(validator_hotkey) = std::env::var("VALIDATOR_HOTKEY") {
551
env.push(format!("VALIDATOR_HOTKEY={}", validator_hotkey));
552
}
553
+ // Pass validator secret key for signing requests (needed by challenge validator workers)
554
+ if let Ok(validator_secret) = std::env::var("VALIDATOR_SECRET_KEY") {
555
+ env.push(format!("VALIDATOR_SECRET={}", validator_secret));
556
+ }
557
// Pass owner/sudo hotkey for challenge sudo operations
558
if let Ok(owner_hotkey) = std::env::var("OWNER_HOTKEY") {
559
env.push(format!("OWNER_HOTKEY={}", owner_hotkey));
0 commit comments