Skip to content

Commit 1699a73

Browse files
authored
Merge pull request ovrclk#12 from ovrclk/ryan/mainnet-fix
fix for mainnet
2 parents 1e49bd8 + a5a675d commit 1699a73

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/ovrclk/akash:0.10.1
1+
FROM ghcr.io/ovrclk/akash:0.12.1
22
LABEL org.opencontainers.image.source https://github.com/ovrclk/akash-on-akash
33

44
EXPOSE 8080

env/definet

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
STATE_SYNC=1
2-
SEEDS_URL=https://raw.githubusercontent.com/ovrclk/net/master/definet/seed-nodes.txt
3-
SYNC_URL=https://raw.githubusercontent.com/ovrclk/net/master/definet/rpc-nodes.txt
4-
GENESIS_URL=https://raw.githubusercontent.com/ovrclk/net/master/definet/genesis.json
2+
SEEDS_URL=https://raw.githubusercontent.com/ovrclk/net/master/mainnet/seed-nodes.txt
3+
SYNC_URL=https://raw.githubusercontent.com/ovrclk/net/master/mainnet/rpc-nodes.txt
4+
GENESIS_URL=https://raw.githubusercontent.com/ovrclk/net/master/mainnet/genesis.json
55
AKASH_P2P_PEX=true
66
PEX=1
77
AKASH_MONIKER=

patch_config_toml.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def select_subset(values, amount):
9292
sync_servers_str = ','.join('http://%s' % (x,) for x in sync_servers)
9393

9494
data['statesync'] = {
95-
'enable': True,
95+
'enable': False,
9696
'rpc_servers': sync_servers_str,
9797
'trust_height': trust_height,
9898
'trust_hash': trust_hash,

sdl/api-node.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "2.0"
33

44
services:
55
akash:
6-
image: ghcr.io/ovrclk/akash-on-akash:v0.0.5
6+
image: ghcr.io/ovrclk/akash-on-akash:v0.0.8
77
env:
88
- SEEDS_URL=https://raw.githubusercontent.com/ovrclk/net/master/mainnet/seed-nodes.txt
99
- SYNC_URL=https://raw.githubusercontent.com/ovrclk/net/master/mainnet/rpc-nodes.txt

sdl/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "2.0"
33

44
services:
55
akash:
6-
image: ghcr.io/ovrclk/akash-on-akash:v0.0.5
6+
image: ghcr.io/ovrclk/akash-on-akash:v0.0.8
77
env:
88
# - STATE_SYNC=1
99
- SEEDS_URL=https://raw.githubusercontent.com/ovrclk/net/master/mainnet/seed-nodes.txt

0 commit comments

Comments
 (0)