Skip to content

Commit

Permalink
Fix latest tagger
Browse files Browse the repository at this point in the history
  • Loading branch information
nimrod-teich committed Mar 27, 2024
1 parent 2bf2d0d commit a119c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/tag_latest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"):
Expand Down

0 comments on commit a119c5f

Please sign in to comment.