We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c543017 commit f602d75Copy full SHA for f602d75
crates/challenge-orchestrator/src/docker.rs
@@ -369,6 +369,11 @@ impl DockerClient {
369
if let Ok(owner_hotkey) = std::env::var("OWNER_HOTKEY") {
370
env.push(format!("OWNER_HOTKEY={}", owner_hotkey));
371
}
372
+ // Pass Platform URL for metagraph verification
373
+ // Use container hostname or env var since we're on the same Docker network
374
+ let validator_host = std::env::var("VALIDATOR_CONTAINER_NAME")
375
+ .unwrap_or_else(|_| "platform-validator".to_string());
376
+ env.push(format!("PLATFORM_URL=http://{}:8080", validator_host));
377
378
// Create container config
379
let container_config = Config {
0 commit comments