From 026778796e95225d00b5c9cc0e87c2d386f2bbe7 Mon Sep 17 00:00:00 2001 From: Abhinav Kumar <57705190+avkr003@users.noreply.github.com> Date: Thu, 2 Jan 2025 17:54:56 +0530 Subject: [PATCH] reduce testnet upgrade height to 2 days (#1092) --- .github/workflows/create-release-and-testnet-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release-and-testnet-deploy.yml b/.github/workflows/create-release-and-testnet-deploy.yml index 86ea7465f..d35c81750 100644 --- a/.github/workflows/create-release-and-testnet-deploy.yml +++ b/.github/workflows/create-release-and-testnet-deploy.yml @@ -43,7 +43,7 @@ jobs: # helper functions extract_txhash() { awk -F 'txhash: ' '/txhash:/{print $2; exit}'; } extract_proposal_id() { awk -F 'key: proposal_id|value: ' '/key: proposal_id/ { getline; gsub(/"/, "", $2); print $2; exit }'; } - extract_and_calc_upgrade_height() { awk -F'"latest_block_height":"' '{ split($2,a,"\""); print a[1]+75000; exit }'; } + extract_and_calc_upgrade_height() { awk -F'"latest_block_height":"' '{ split($2,a,"\""); print a[1]+50000; exit }'; } extract_checksum() { awk "/elysd-${ELYS_VERSION}-linux-amd64.tar.gz/ {print \$1; exit}"; } # environment variables