diff --git a/README.md b/README.md index 0bf48c66..a6a7f441 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ rustup update Once Rust is installed, clone the Namada Trusted Setup Ceremony GitHub repository and change directories into `namada-trusted-setup`: ``` git clone https://github.com/anoma/namada-trusted-setup.git -cd namada-trusted-setup && git checkout v1.0.0-10 +cd namada-trusted-setup && git checkout v1.0.0-beta.11 ``` Build the binary: diff --git a/phase2-coordinator/src/main.rs b/phase2-coordinator/src/main.rs index 4dd13092..79b3790b 100644 --- a/phase2-coordinator/src/main.rs +++ b/phase2-coordinator/src/main.rs @@ -123,7 +123,7 @@ async fn generate_secret() -> Result<()> { let secret = hex::encode(secret_bytes); std::env::set_var("ACCESS_SECRET", &secret); let env = match std::env::var("AWS_S3_PROD") { - Ok(val) if val == "true" => "prod", + Ok(val) if val == "true" => "production", _ => "master", }; diff --git a/phase2-coordinator/src/s3.rs b/phase2-coordinator/src/s3.rs index 2f166e33..a88a7eae 100644 --- a/phase2-coordinator/src/s3.rs +++ b/phase2-coordinator/src/s3.rs @@ -198,7 +198,7 @@ impl S3Ctx { /// Retrieve the compressed token folder. pub async fn get_tokens(&self) -> Result> { let key = match std::env::var("AWS_S3_PROD") { - Ok(t) if t == "true" => format!("prod/{}", TOKENS_ZIP_FILE), + Ok(t) if t == "true" => format!("production/{}", TOKENS_ZIP_FILE), _ => format!("master/{}", TOKENS_ZIP_FILE), };