Skip to content

Commit

Permalink
updated links to new all that node links
Browse files Browse the repository at this point in the history
  • Loading branch information
gzukel committed May 15, 2024
1 parent c93ad58 commit fc47011
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-status-changer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STATUS_ENDPOINT: "https://zetachain-mainnet.g.allthatnode.com/archive/tendermint/status"
PROPOSAL_ENDPOINT: "https://zetachain-mainnet.g.allthatnode.com/archive/rest/cosmos/gov/v1/proposals"
MAX_WAIT_FOR_PROCESSING_BLOCKS_CHECK: "500"
run: |
import requests
import time
Expand Down Expand Up @@ -75,7 +76,7 @@ jobs:
return current_time - submit_time > timedelta(weeks=1)
def monitor_block_height(proposal_height):
max_checks = 50
max_checks = int(os.environ["MAX_WAIT_FOR_PROCESSING_BLOCKS_CHECK"])
checks = 0
while checks < max_checks:
current_height = get_current_block_height()
Expand Down

0 comments on commit fc47011

Please sign in to comment.