Skip to content

Commit dcfd1dd

Browse files
authored
Merge pull request #313 from iotexproject/fixurl
Bump to v2.3.5: update scripts, configs, and add release note
2 parents fccfea7 + c759519 commit dcfd1dd

11 files changed

Lines changed: 135 additions & 90 deletions

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
Here are the software versions we use:
2121

22-
- MainNet: v2.3.4
22+
- MainNet: v2.3.5
2323

2424
## <a name="testnet"/>Join TestNet
2525
To start and run a testnet node, please click [**Join Testnet**](https://github.com/iotexproject/iotex-bootstrap/blob/master/README_testnet.md)
@@ -32,7 +32,7 @@ This is the recommended way to start an IoTeX node
3232
1. Pull the docker image:
3333

3434
```
35-
docker pull iotex/iotex-core:v2.3.4
35+
docker pull iotex/iotex-core:v2.3.5
3636
```
3737

3838
2. Set the environment with the following commands:
@@ -47,17 +47,17 @@ mkdir -p $IOTEX_HOME/data
4747
mkdir -p $IOTEX_HOME/log
4848
mkdir -p $IOTEX_HOME/etc
4949
50-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/config_mainnet.yaml > $IOTEX_HOME/etc/config.yaml
51-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/genesis_mainnet.yaml > $IOTEX_HOME/etc/genesis.yaml
52-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/trie.db.patch > $IOTEX_HOME/data/trie.db.patch
50+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/config_mainnet.yaml > $IOTEX_HOME/etc/config.yaml
51+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/genesis_mainnet.yaml > $IOTEX_HOME/etc/genesis.yaml
52+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/trie.db.patch > $IOTEX_HOME/data/trie.db.patch
5353
```
5454

5555
3. Edit `$IOTEX_HOME/etc/config.yaml`, look for `externalHost` and `producerPrivKey`, uncomment the lines and fill in your external IP and private key. If you leave `producerPrivKey` empty, your node will be assgined with a random key.
5656

5757
4. Start from a **baseline snapshot** (rather than sync from the genesis block), run the following commands:
5858

5959
```
60-
curl -L https://t.iotex.me/mainnet-data-snapshot-core-latest > $IOTEX_HOME/data.tar.gz
60+
curl -L -C - -o $IOTEX_HOME/data.tar.gz https://t.iotex.me/mainnet-data-snapshot-core-latest
6161
```
6262

6363
5. Extract the data package:
@@ -70,15 +70,15 @@ For advanced users, there are three options to consider:
7070

7171
- Option 1: If you plan to run your node as a [gateway](#gateway), please use the snapshot with index data:
7272
```
73-
curl -L https://t.iotex.me/mainnet-data-snapshot-gateway-latest > $IOTEX_HOME/data_index.tar.gz
73+
curl -L -C - -o $IOTEX_HOME/data_index.tar.gz https://t.iotex.me/mainnet-data-snapshot-gateway-latest
7474
tar -xzf data_index.tar.gz
7575
```
7676

7777
If you need to run your node in archive mode to provide full historical data, please go to [Archive Node](./archive-node.md).
7878

7979
- Optional 2: If you only want to sync chain data from 0 height without relaying on legacy delegate election data from Ethereum, you can setup legacy delegate election data with following command:
8080
```bash
81-
curl -L https://storage.iotex.io/poll.mainnet.tar.gz > $IOTEX_HOME/poll.tar.gz; tar -xzf $IOTEX_HOME/poll.tar.gz --directory $IOTEX_HOME/data
81+
curl -L -C - -o $IOTEX_HOME/poll.tar.gz https://storage.iotex.io/poll.mainnet.tar.gz; tar -xzf $IOTEX_HOME/poll.tar.gz --directory $IOTEX_HOME/data
8282
```
8383

8484
- Optional 3: If you want to sync the chain from 0 height and also fetching legacy delegate election data from Ethereum, please change the `gravityChainAPIs` in config.yaml to use your infura key with Ethereum archive mode supported or change the API endpoint to an Ethereum archive node which you can access.
@@ -93,7 +93,7 @@ docker run -d --restart on-failure --name iotex \
9393
-v=$IOTEX_HOME/log:/var/log:rw \
9494
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
9595
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
96-
iotex/iotex-core:v2.3.4 \
96+
iotex/iotex-core:v2.3.5 \
9797
iotex-server \
9898
-config-path=/etc/iotex/config_override.yaml \
9999
-genesis-path=/etc/iotex/genesis.yaml
@@ -114,7 +114,7 @@ docker run -d --restart on-failure --name iotex \
114114
-v=$IOTEX_HOME/log:/var/log:rw \
115115
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
116116
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
117-
iotex/iotex-core:v2.3.4 \
117+
iotex/iotex-core:v2.3.5 \
118118
iotex-server \
119119
-config-path=/etc/iotex/config_override.yaml \
120120
-genesis-path=/etc/iotex/genesis.yaml \
@@ -138,7 +138,7 @@ Same as [Join MainNet](#mainnet) step 2
138138
```
139139
git clone https://github.com/iotexproject/iotex-core.git
140140
cd iotex-core
141-
git checkout v2.3.4
141+
git checkout v2.3.5
142142
143143
// optional
144144
export GOPROXY=https://goproxy.io

README_CN.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
以下是当前我们使用的软件版本:
2020

21-
- 主网:v2.3.4
21+
- 主网:v2.3.5
2222

2323
## <a name="testnet"/>加入测试网
2424
如果你要启动节点加入测试网,请点击[**加入测试网**](https://github.com/iotexproject/iotex-bootstrap/blob/master/README_CN_testnet.md)
@@ -32,7 +32,7 @@
3232
1. 提取(pull) docker镜像
3333

3434
```
35-
docker pull iotex/iotex-core:v2.3.4
35+
docker pull iotex/iotex-core:v2.3.5
3636
```
3737

3838
2. 使用以下命令设置运行环境
@@ -47,16 +47,16 @@ mkdir -p $IOTEX_HOME/data
4747
mkdir -p $IOTEX_HOME/log
4848
mkdir -p $IOTEX_HOME/etc
4949
50-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/config_mainnet.yaml > $IOTEX_HOME/etc/config.yaml
51-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/genesis_mainnet.yaml > $IOTEX_HOME/etc/genesis.yaml
52-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/trie.db.patch > $IOTEX_HOME/data/trie.db.patch
50+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/config_mainnet.yaml > $IOTEX_HOME/etc/config.yaml
51+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/genesis_mainnet.yaml > $IOTEX_HOME/etc/genesis.yaml
52+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/trie.db.patch > $IOTEX_HOME/data/trie.db.patch
5353
```
5454

5555
3. 编辑 `$IOTEX_HOME/etc/config.yaml`, 查找 `externalHost``producerPrivKey`, 取消注释行并填写您的外部 IP 和私钥。如果`producerPrivKey`放空,你的节点将被分配一个随机密钥。
5656

5757
4. 下载全量数据快照, 请运行以下命令:
5858
```
59-
curl -L https://t.iotex.me/mainnet-data-snapshot-core-latest > $IOTEX_HOME/data.tar.gz
59+
curl -L -C - -o $IOTEX_HOME/data.tar.gz https://t.iotex.me/mainnet-data-snapshot-core-latest
6060
```
6161

6262
5. 解压数据包
@@ -69,15 +69,15 @@ tar -xzf $IOTEX_HOME/data.tar.gz -C $IOTEX_HOME/data/
6969

7070
- 选项1:如果计划将节点作为[网关](#gateway)运行,还需要额外下载带有索引数据的快照
7171
```
72-
curl -L https://t.iotex.me/mainnet-data-snapshot-gateway-latest > $IOTEX_HOME/data_index.tar.gz
72+
curl -L -C - -o $IOTEX_HOME/data_index.tar.gz https://t.iotex.me/mainnet-data-snapshot-gateway-latest
7373
tar -xzf data_index.tar.gz
7474
```
7575

7676
如果需要以 archive 模式运行提供全量历史数据,请转到 [Archive Node](./archive-node.md)
7777

7878
- 选择2:如果计划从 0 区块高度开始同步链上数据而不使用来自以太坊旧的节点代表数据,执行以下命令设置旧的节点代表数据:
7979
```
80-
curl -L https://storage.iotex.io/poll.mainnet.tar.gz > $IOTEX_HOME/poll.tar.gz; tar -xzf $IOTEX_HOME/poll.tar.gz --directory $IOTEX_HOME/data
80+
curl -L -C - -o $IOTEX_HOME/poll.tar.gz https://storage.iotex.io/poll.mainnet.tar.gz; tar -xzf $IOTEX_HOME/poll.tar.gz --directory $IOTEX_HOME/data
8181
```
8282

8383
- 选择3:如果计划从 0 区块高度开始同步链并从以太坊获取旧的节点代表数据,请更改 config.yaml 中的 `gravityChainAPIs`并在支持以太坊存档模式的情况下使用您的 infura 密钥,或将 API 端点更改为您有权限访问的以太坊存档节点。
@@ -92,7 +92,7 @@ docker run -d --restart on-failure --name iotex \
9292
-v=$IOTEX_HOME/log:/var/log:rw \
9393
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
9494
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
95-
iotex/iotex-core:v2.3.4 \
95+
iotex/iotex-core:v2.3.5 \
9696
iotex-server \
9797
-config-path=/etc/iotex/config_override.yaml \
9898
-genesis-path=/etc/iotex/genesis.yaml
@@ -110,7 +110,7 @@ docker run -d --restart on-failure --name iotex \
110110
-v=$IOTEX_HOME/log:/var/log:rw \
111111
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
112112
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
113-
iotex/iotex-core:v2.3.4 \
113+
iotex/iotex-core:v2.3.5 \
114114
iotex-server \
115115
-config-path=/etc/iotex/config_override.yaml \
116116
-genesis-path=/etc/iotex/genesis.yaml \
@@ -130,7 +130,7 @@ docker run -d --restart on-failure --name iotex \
130130
```
131131
git clone https://github.com/iotexproject/iotex-core.git
132132
cd iotex-core
133-
git checkout v2.3.4
133+
git checkout v2.3.5
134134
135135
// optional
136136
export GOPROXY=https://goproxy.io

README_CN_testnet.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
以下是当前我们使用的软件版本:
1919

20-
- 测试网:v2.3.4
20+
- 测试网:v2.3.5
2121

2222
**Note**
2323
如果你要启动节点加入主网,请点击[**加入主网**](https://github.com/iotexproject/iotex-bootstrap/blob/master/README_CN.md)
@@ -31,7 +31,7 @@
3131
1. 提取(pull) docker镜像
3232

3333
```
34-
docker pull iotex/iotex-core:v2.3.4
34+
docker pull iotex/iotex-core:v2.3.5
3535
```
3636

3737
2. 使用以下命令设置运行环境
@@ -46,16 +46,16 @@ mkdir -p $IOTEX_HOME/data
4646
mkdir -p $IOTEX_HOME/log
4747
mkdir -p $IOTEX_HOME/etc
4848
49-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
50-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
49+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
50+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
5151
```
5252

5353
3. 编辑 `$IOTEX_HOME/etc/config.yaml`, 查找 `externalHost``producerPrivKey`, 取消注释行并填写您的外部 IP 和私钥。如果`producerPrivKey`放空,你的节点将被分配一个随机密钥。
5454

5555
4. 下载全量数据快照, 请运行以下命令:
5656

5757
```
58-
curl -L https://t.iotex.me/testnet-data-snapshot-core-latest > $IOTEX_HOME/data.tar.gz
58+
curl -L -C - -o $IOTEX_HOME/data.tar.gz https://t.iotex.me/testnet-data-snapshot-core-latest
5959
```
6060

6161
5. 解压数据包
@@ -68,13 +68,13 @@ tar -xzf $IOTEX_HOME/data.tar.gz -C $IOTEX_HOME/data/
6868

6969
- 选项1:如果计划将节点作为[网关](#gateway)运行,请额外下载带有索引数据的快照
7070
```
71-
curl -L https://t.iotex.me/testnet-data-snapshot-gateway-latest > $IOTEX_HOME/data_index.tar.gz
71+
curl -L -C - -o $IOTEX_HOME/data_index.tar.gz https://t.iotex.me/testnet-data-snapshot-gateway-latest
7272
tar -xzf data_index.tar.gz
7373
```
7474

7575
- 选择2:如果计划从 0 区块高度开始同步链上数据而不使用来自以太坊旧的节点代表数据,执行以下命令设置旧的节点代表数据:
7676
```
77-
curl -L https://storage.iotex.io/poll.testnet.tar.gz > $IOTEX_HOME/poll.tar.gz; tar -xzf $IOTEX_HOME/poll.tar.gz --directory $IOTEX_HOME/data
77+
curl -L -C - -o $IOTEX_HOME/poll.tar.gz https://storage.iotex.io/poll.testnet.tar.gz; tar -xzf $IOTEX_HOME/poll.tar.gz --directory $IOTEX_HOME/data
7878
```
7979

8080
- 选择3:如果计划从 0 区块高度开始同步链并从以太坊获取旧的节点代表数据,请更改 config.yaml 中的 `gravityChainAPIs`并在支持以太坊存档模式的情况下使用您的 infura 密钥,或将 API 端点更改为您有权限访问的以太坊存档节点。
@@ -89,7 +89,7 @@ docker run -d --restart on-failure --name iotex \
8989
-v=$IOTEX_HOME/log:/var/log:rw \
9090
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
9191
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
92-
iotex/iotex-core:v2.3.4 \
92+
iotex/iotex-core:v2.3.5 \
9393
iotex-server \
9494
-config-path=/etc/iotex/config_override.yaml \
9595
-genesis-path=/etc/iotex/genesis.yaml
@@ -107,7 +107,7 @@ docker run -d --restart on-failure --name iotex \
107107
-v=$IOTEX_HOME/log:/var/log:rw \
108108
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
109109
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
110-
iotex/iotex-core:v2.3.4 \
110+
iotex/iotex-core:v2.3.5 \
111111
iotex-server \
112112
-config-path=/etc/iotex/config_override.yaml \
113113
-genesis-path=/etc/iotex/genesis.yaml \
@@ -127,7 +127,7 @@ docker run -d --restart on-failure --name iotex \
127127
```
128128
git clone https://github.com/iotexproject/iotex-core.git
129129
cd iotex-core
130-
git checkout v2.3.4
130+
git checkout v2.3.5
131131
132132
// optional
133133
export GOPROXY=https://goproxy.io

README_testnet.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
Here are the software versions we use:
2020

21-
- TestNet: v2.3.4
21+
- TestNet: v2.3.5
2222

2323
**Note**
2424
To start and run a mainnet node, please click [**Join Mainnet**](https://github.com/iotexproject/iotex-bootstrap/blob/master/README.md)
@@ -31,7 +31,7 @@ This is the recommended way to start an IoTeX node
3131
1. Pull the docker image:
3232

3333
```
34-
docker pull iotex/iotex-core:v2.3.4
34+
docker pull iotex/iotex-core:v2.3.5
3535
```
3636

3737
2. Set the environment with the following commands:
@@ -46,16 +46,16 @@ mkdir -p $IOTEX_HOME/data
4646
mkdir -p $IOTEX_HOME/log
4747
mkdir -p $IOTEX_HOME/etc
4848
49-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
50-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.4/genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
49+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
50+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v2.3.5/genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
5151
```
5252

5353
3. Edit `$IOTEX_HOME/etc/config.yaml`, look for `externalHost` and `producerPrivKey`, uncomment the lines and fill in your external IP and private key. If you leave `producerPrivKey` empty, your node will be assgined with a random key.
5454

5555
4. Start from a **baseline snapshot** (rather than sync from the genesis block), run the following commands:
5656

5757
```
58-
curl -L https://t.iotex.me/testnet-data-snapshot-core-latest > $IOTEX_HOME/data.tar.gz
58+
curl -L -C - -o $IOTEX_HOME/data.tar.gz https://t.iotex.me/testnet-data-snapshot-core-latest
5959
```
6060

6161
5. Extract the data package:
@@ -69,13 +69,13 @@ For advanced users, there are three options to consider:
6969
- Option 1: If you plan to run your node as a [gateway](#gateway), please use the snapshot with index data:
7070

7171
```
72-
curl -L https://t.iotex.me/testnet-data-snapshot-gateway-latest > $IOTEX_HOME/data_index.tar.gz
72+
curl -L -C - -o $IOTEX_HOME/data_index.tar.gz https://t.iotex.me/testnet-data-snapshot-gateway-latest
7373
tar -xzf data_index.tar.gz
7474
```
7575

7676
- Optional 2: If you only want to sync chain data from 0 height without relaying on legacy delegate election data from Ethereum, you can setup legacy delegate election data with following command:
7777
```bash
78-
curl -L https://storage.iotex.io/poll.testnet.tar.gz > $IOTEX_HOME/poll.tar.gz; tar -xzf $IOTEX_HOME/poll.tar.gz --directory $IOTEX_HOME/data
78+
curl -L -C - -o $IOTEX_HOME/poll.tar.gz https://storage.iotex.io/poll.testnet.tar.gz; tar -xzf $IOTEX_HOME/poll.tar.gz --directory $IOTEX_HOME/data
7979
```
8080

8181
- Optional 3: If you want to sync the chain from 0 height and also fetching legacy delegate election data from Ethereum, please change the `gravityChainAPIs` in config.yaml to use your infura key with Ethereum archive mode supported or change the API endpoint to an Ethereum archive node which you can access.
@@ -90,7 +90,7 @@ docker run -d --restart on-failure --name iotex \
9090
-v=$IOTEX_HOME/log:/var/log:rw \
9191
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
9292
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
93-
iotex/iotex-core:v2.3.4 \
93+
iotex/iotex-core:v2.3.5 \
9494
iotex-server \
9595
-config-path=/etc/iotex/config_override.yaml \
9696
-genesis-path=/etc/iotex/genesis.yaml
@@ -110,7 +110,7 @@ docker run -d --restart on-failure --name iotex \
110110
-v=$IOTEX_HOME/log:/var/log:rw \
111111
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
112112
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
113-
iotex/iotex-core:v2.3.4 \
113+
iotex/iotex-core:v2.3.5 \
114114
iotex-server \
115115
-config-path=/etc/iotex/config_override.yaml \
116116
-genesis-path=/etc/iotex/genesis.yaml \
@@ -131,7 +131,7 @@ Same as [Join TestNet](#testnet) step 2
131131
```
132132
git clone https://github.com/iotexproject/iotex-core.git
133133
cd iotex-core
134-
git checkout v2.3.4
134+
git checkout v2.3.5
135135
136136
// optional
137137
export GOPROXY=https://goproxy.io

archive-node.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ need to download and uncompress this file.
6565
In the $IOTEX_HOME folder, run the following commands:
6666
```
6767
#download the data files and uncompress it
68-
curl -LO https://t.iotex.me/mainnet-data-snapshot-core-latest
68+
curl -L -C - -O https://t.iotex.me/mainnet-data-snapshot-core-latest
6969
tar -xzf mainnet-data-e-20251228-042459-core.tar.gz
7070
71-
curl -LO https://t.iotex.me/mainnet-data-snapshot-gateway-latest
71+
curl -L -C - -O https://t.iotex.me/mainnet-data-snapshot-gateway-latest
7272
tar -xzf mainnet-data-e-20251228-042459-gateway.tar.gz
7373
74-
curl -LO https://t.iotex.me/mainnet-data-snapshot-trie-history-latest
74+
curl -L -C - -O https://t.iotex.me/mainnet-data-snapshot-trie-history-latest
7575
tar -xzf mainnet-data-e-20251228-042459-trie-history.tar.gz
7676
```
7777
>Note: the snapshot has a size of 450GB at this moment.
@@ -146,7 +146,7 @@ docker run -d --restart on-failure --name iotex \
146146
-v=$IOTEX_HOME/log:/var/iotex-archive/log:rw \
147147
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
148148
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
149-
iotex/iotex-core:v2.3.4 \
149+
iotex/iotex-core:v2.3.5 \
150150
iotex-server \
151151
-config-path=/etc/iotex/config_override.yaml \
152152
-genesis-path=/etc/iotex/genesis.yaml \
@@ -172,7 +172,7 @@ sudo apt update -y && sudo apt upgrade -y && sudo apt autoremove -y
172172
sudo apt install -y git gcc make --fix-missing
173173
174174
#install Go
175-
curl -LO https://go.dev/dl/go1.21.8.linux-amd64.tar.gz
175+
curl -L -C - -O https://go.dev/dl/go1.21.8.linux-amd64.tar.gz
176176
sudo tar xzf go1.21.8.linux-amd64.tar.gz -C /usr/local && rm go1.21.8.linux-amd64.tar.gz
177177
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc
178178
source ~/.bashrc
@@ -189,7 +189,7 @@ git clone https://github.com/iotexproject/iotex-core.git
189189
cd iotex-core
190190
191191
#checkout the code branch for archive node
192-
git checkout v2.3.4
192+
git checkout v2.3.5
193193
194194
#build binary
195195
make build

0 commit comments

Comments
 (0)