From a119c5f102c580b87036b7aa946a9374fc2ac0dc Mon Sep 17 00:00:00 2001 From: Nimrod Teich Date: Wed, 27 Mar 2024 13:33:13 +0200 Subject: [PATCH] Fix latest tagger --- .github/tag_latest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/tag_latest.py b/.github/tag_latest.py index 4490cba..3415c7c 100644 --- a/.github/tag_latest.py +++ b/.github/tag_latest.py @@ -55,7 +55,7 @@ def get_digest(tag, type: str): raise Exception(f'Error fetching digest for tag {tag}: {response.content}') def get_latest_target(type: str) -> str: - result = subprocess.run(["./bin/lavad", "q", "protocol", "params", "--node", "https://public-rpc-testnet2.lavanet.xyz:443/rpc/", "--output", "--json"], capture_output=True, text=True) + result = subprocess.run(["./bin/lavad", "q", "protocol", "params", "--node", "https://testnet2-rpc.lavapro.xyz:443/rpc/", "--output", "--json"], capture_output=True, text=True) response = json.loads(result.stdout) if (type == "lava-consumer"):