From d6d5b5b7da048b1b21b3a1028bdac82a84243ab9 Mon Sep 17 00:00:00 2001 From: ghe0 Date: Sat, 29 Mar 2025 22:15:53 +0200 Subject: [PATCH] change name of the brain to match certificate --- src/global.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/global.rs b/src/global.rs index 268a6c6..8e64d61 100644 --- a/src/global.rs +++ b/src/global.rs @@ -8,7 +8,7 @@ use std::sync::LazyLock; pub const DETEE_ROOT_CA: &str = "/etc/detee/root_ca.pem"; pub const BRAIN_STAGING: (&str, &str) = ("https://159.65.58.38:31337", "staging-brain"); -pub const BRAIN_TESTING: (&str, &str) = ("https://164.92.249.180:31337", "testing-brain"); +pub const BRAIN_TESTING: (&str, &str) = ("https://164.92.249.180:31337", "testnet-brain"); pub const PACKAGE_ARCHIVE_POSTFIX: &str = "-enclave_package.tar.gz"; pub const PACKAGE_ARCHIVE_DIR_PATH: &str = "./enclave_archives"; pub const PACKAGE_DIR_PATH: &str = "./enclaves";