Skip to content

Commit

Permalink
Update installer to 16.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Niccolo Raspa committed Aug 6, 2023
1 parent d9bfe45 commit a75b10a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions osmosis-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ def __init__(self, chain_id, version, genesis_url, binary_url, peers, rpc_node,
MAINNET = Network(
chain_id = "osmosis-1",
version = "v16.1.1",
version = "v16.1.1",
genesis_url = "https://osmosis.fra1.digitaloceanspaces.com/osmosis-1/genesis.json",
binary_url = {
"linux": {
Expand Down Expand Up @@ -652,7 +653,8 @@ def download_binary(network):
architecture = "amd64"
elif architecture == "aarch64":
architecture = "arm64"
else:

if architecture not in ["arm64", "amd64"]:
print(f"Unsupported architecture {architecture}.")
sys.exit(1)

Expand Down Expand Up @@ -998,7 +1000,8 @@ def download_cosmovisor(osmosis_home):
architecture = "amd64"
elif architecture == "aarch64":
architecture = "arm64"
else:

if architecture not in ["arm64", "amd64"]:
print(f"Unsupported architecture {architecture}.")
sys.exit(1)

Expand Down

0 comments on commit a75b10a

Please sign in to comment.