From cf7b4e5fcb9c34d751cfd2647138bac4ae545b8f Mon Sep 17 00:00:00 2001 From: Fraccaroli Gianmarco Date: Thu, 17 Nov 2022 15:17:06 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: From 250ad3cc5202189fab407af40f7e4a9b39d01606 Mon Sep 17 00:00:00 2001 From: Marco Granelli <73647772+grarco@users.noreply.github.com> Date: Thu, 17 Nov 2022 15:56:53 +0100 Subject: [PATCH 2/2] Changes prod to production (#95) --- phase2-coordinator/src/main.rs | 2 +- phase2-coordinator/src/s3.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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), };