Skip to content

Commit ae13f9b

Browse files
authored
update v2.11.0 doc (#1803)
* update download link (#1802) * add 2.11.0 changelog (#1800) * update v2.11.0 doc
1 parent 61d5785 commit ae13f9b

File tree

23 files changed

+68
-42
lines changed

23 files changed

+68
-42
lines changed

2.x/conf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@
7676
# built documents.
7777
#
7878
# The short X.Y version.
79-
version = '2.9'
79+
version = '2.11'
8080
# The full version, including alpha/beta/rc tags.
81-
release = 'v2.9.0'
81+
release = 'v2.11.0'
8282

8383
# The language for content autogenerated by Sphinx. Refer to documentation
8484
# for a list of supported languages.
@@ -354,17 +354,17 @@ def setup(app):
354354
def replace_source(app, exception):
355355
if exception is None:
356356
build_dir = os.environ.get('READTHEDOCS_OUTPUT', '_build')
357-
357+
358358
for root, dirs, files in os.walk(build_dir):
359359
for file in files:
360360
if file.endswith('.html'):
361361
html_path = os.path.join(root, file)
362-
362+
363363
with open(html_path, 'r') as file:
364364
lines = file.readlines()
365365

366366
new_lines = [line.replace('https://unpkg.com', 'https://npm.onmicrosoft.cn') for line in lines]
367-
new_lines = [line.replace('https://cdnjs.cloudflare.com', 'https://cdn.bootcdn.net') for line in new_lines]
367+
new_lines = [line.replace('https://cdnjs.cloudflare.com', 'https://cdn.bootcdn.net') for line in new_lines]
368368

369369
with open(html_path, 'w') as file:
370370
file.writelines(new_lines)

2.x/docs/articles/3_features/36_cryptographic/national_cryptography_features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
buildchain.sh脚本的-g为国密编译选项,使用成功后会生成国密版的节点。默认从GitHub下载最新稳定版本可执行程序,操作方式:
7575

7676
```bash
77-
curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
77+
curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
7878
```
7979

8080
```eval_rst

2.x/docs/articles/4_tools/five_step_to_develop_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
(请先在home目录创建fisco目录,接下来都在这个目录操作)
1515

1616
```bash
17-
$ curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
17+
$ curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
1818
```
1919

2020
```eval_rst

2.x/docs/articles/7_community/fisco适配达梦数据库/fisco达梦数据库.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ make -j4
190190

191191
```shell
192192
#需要手动复制rt和oci驱动至deps/libs文件夹中,如下图所示,其余的依赖会在编译中自动放入。这两个依赖,#libdmoci.a在网盘提供的包里有。librt.a请在您的系统目录下寻找。也可以使用命令查找
193-
whereis librt.a
193+
whereis librt.a
194194
```
195195

196196
![image-20231016111815321](fisco达梦数据库.assets/image-20231016111815321.png)
@@ -210,7 +210,7 @@ whereis librt.a
210210
cd ~ && mkdir -p fisco && cd fisco
211211

212212
## 下载脚本
213-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
213+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
214214
## 执行建链脚本
215215
bash build_chain.sh -l 127.0.0.1:4 -p 30300,20200,8545
216216
```

2.x/docs/articles/7_practice/build_chain_with_wsl_on_windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ wsl
9191
cd ~
9292
sudo apt install -y openssl curl
9393
cd ~ && mkdir -p fisco && cd fisco
94-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
94+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
9595
bash build_chain.sh -l 127.0.0.1:4 -p 30300,20200,8545
9696
```
9797

2.x/docs/articles/7_practice/kunpeng_platform_compiles_and_runs_fisco-bcos-2.6.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ cp ${HOME}/FISCO-BCOS/build/bin/fisco-bcos bin
197197
### 3. 下载 build_chain.sh 脚本
198198

199199
```
200-
curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
200+
curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
201201
```
202202

203203
### 4. 运行一键搭建2群组3机构6节点底层FISCO-BCOS联盟链服务脚本

2.x/docs/change_log/2_11_0.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# [v2.11.0](https://github.com/FISCO-BCOS/FISCO-BCOS/releases/tag/v2.11.0)
2+
3+
标签:``v2.11.0`` ``版本特性``
4+
5+
## 2.11.0
6+
7+
### 新增
8+
9+
- `WITH_TBB`编译选项,可以在编译是关闭对`parallel_for`的使用
10+
- 日志模块新增部分配置项,支持更灵活的日志格式配置和文件归档配置
11+
12+
### 兼容性
13+
14+
**2.11.0向前兼容**,旧版本可以直接替换程序升级

2.x/docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ sudo yum install -y openssl openssl-devel
6464
cd ~ && mkdir -p fisco && cd fisco
6565

6666
## 下载脚本
67-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
67+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
6868
```
6969

7070
```eval_rst
7171
.. note::
72-
- 如果因为网络问题导致长时间无法下载build_chain.sh脚本,请尝试 `curl -#LO https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/FISCO-BCOS/FISCO-BCOS/releases/v2.9.1/build_chain.sh && chmod u+x build_chain.sh`
72+
- 如果因为网络问题导致长时间无法下载build_chain.sh脚本,请尝试 `curl -#LO https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/FISCO-BCOS/FISCO-BCOS/releases/v2.11.0/build_chain.sh && chmod u+x build_chain.sh`
7373
```
7474

7575
![](./../images/installation/download_build_chain.gif)

2.x/docs/manual/configuration.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,18 @@ boostlog示例配置如下:
179179
flush=true
180180
```
181181

182+
#### v2.11.0新增配置项
183+
184+
- `log.format`:配置每条日志的格式,关键字用%包裹,支持关键字包括`LineID, TimeStamp, ProcessID, ThreadName, ThreadID, Message 和 GroupId`
185+
- `log.enable_rotate_by_hour`:默认为true,配置为`false``log.log_name_pattern,log.rotate_name_pattern,log.archive_path,log.compress_archive_file,log.max_archive_files,log.max_archive_size,log.min_free_space`才生效,否则日志为按小时或文件大小产生新的文件
186+
- `log.log_name_pattern`: 日志文件的文件名模式,可以配置字符串,也支持格式化字符,%前缀,Y,m,d,H,M,S代表年月日时分秒,N代表单调递增的编号,可以%5N使用定长编号
187+
- `log.rotate_name_pattern`: 滚动后产生的日志文件的文件名,支持的格式化字符与log.log_name_pattern 相同
188+
- `log.archive_path`: 历史日志文件的归档文件夹
189+
- `log.compress_archive_file`: 是否压缩归档的日志文件
190+
- `log.max_archive_files`: 归档文件夹中最大文件个数,0为不限制
191+
- `log.max_archive_size`: 归档文件夹最大硬盘空间限制,单位MB,0为不限制
192+
- `log.min_free_space`: 归档文件夹最小空间,默认为0
193+
182194
#### 统计日志配置
183195

184196
考虑到实时监控系统资源使用情况在实际生产系统中非常重要,FISCO BCOS v2.4.0引入了统计日志,统计日志配置项位于`config.ini`中。

2.x/docs/manual/group_use_cases.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ mkdir -p ~/fisco && cd ~/fisco
7979
- 获取build_chain.sh脚本
8080

8181
```bash
82-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
82+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
8383
```
8484

8585
```eval_rst
@@ -499,7 +499,7 @@ $ cd ~/fisco/nodes/127.0.0.1 && bash stop_all.sh
499499
```bash
500500
$ mkdir -p ~/fisco && cd ~/fisco
501501
# 获取build_chain.sh脚本
502-
$ curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
502+
$ curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
503503

504504
# 若因为网络问题导致长时间无法执行上面的命令,请尝试以下命令:
505505
$ curl -#LO https://gitee.com/FISCO-BCOS/FISCO-BCOS/raw/master-2.0/tools/build_chain.sh && chmod u+x build_chain.sh
@@ -647,11 +647,11 @@ $ cp ~/fisco/console/conf/config-example.toml ~/fisco/console/conf/config.toml
647647
# 修改控制台连接节点的端口为20100和20101
648648
# linux系统使用如下命令:
649649
$ sed -i 's/127.0.0.1:20200/127.0.0.1:20100/g' ~/fisco/console/conf/config.toml
650-
$ sed -i 's/127.0.0.1:20201/127.0.0.1:20101/g' ~/fisco/console/conf/config.toml
650+
$ sed -i 's/127.0.0.1:20201/127.0.0.1:20101/g' ~/fisco/console/conf/config.toml
651651

652652
# mac系统使用如下命令:
653653
$ sed -i .bkp 's/127.0.0.1:20200/127.0.0.1:20100/g' ~/fisco/console/conf/config.toml
654-
$ sed -i .bkp 's/127.0.0.1:20201/127.0.0.1:20101/g' ~/fisco/console/conf/config.toml
654+
$ sed -i .bkp 's/127.0.0.1:20201/127.0.0.1:20101/g' ~/fisco/console/conf/config.toml
655655
```
656656

657657
**通过控制台向群组发交易**

2.x/docs/manual/guomi_crypto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sudo apt install -y openssl curl
1616
# 准备环境
1717
cd ~ && mkdir -p fisco && cd fisco
1818
# 下载build_chain.sh脚本
19-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
19+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
2020

2121
# 若因为网络问题导致长时间无法执行上面的命令,请尝试以下命令:
2222
curl -#LO https://gitee.com/FISCO-BCOS/FISCO-BCOS/raw/master-2.0/tools/build_chain.sh && chmod u+x build_chain.sh

2.x/docs/manual/storage_security.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 存储加密
22

3-
标签:``存储安全`` ``存储加密`` ``落盘加密``
3+
标签:``存储安全`` ``存储加密`` ``落盘加密``
44

55
----
66

@@ -25,7 +25,7 @@
2525

2626
下载`build_chain.sh`脚本
2727
``` shell
28-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
28+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
2929
```
3030

3131
```eval_rst

2.x/docs/sdk/nodejs_sdk/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 快速安装
22

3-
标签:``安装Node.js`` ``命令行工具``
3+
标签:``安装Node.js`` ``命令行工具``
44

55
----
66
## 环境要求
@@ -80,7 +80,7 @@ Node.js SDK内嵌CLI工具,供用户在命令行中方便地与区块链进行
8080

8181
```bash
8282
# 获取开发部署工具build_chain.sh脚本
83-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
83+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
8484
```
8585

8686
```eval_rst

2.x/docs/tutorial/cdn.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ get_gm_account.sh脚本用于生成sm2私钥,依赖于TASSL。如果从GitHub
6363
### 下载开发部署工具
6464

6565
```bash
66-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh
66+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh
6767
```
6868

69-
如果下载失败请尝试`curl -#LO https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/FISCO-BCOS/FISCO-BCOS/releases/v2.9.1/build_chain.sh`
69+
如果下载失败请尝试`curl -#LO https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/FISCO-BCOS/FISCO-BCOS/releases/v2.11.0/build_chain.sh`
7070

7171
### 下载二进制程序
7272

@@ -110,7 +110,7 @@ FISCO BCOS在编译时会自动下载依赖包,每个依赖包有多个源。
110110
1. 创建编译目录
111111

112112
```bash
113-
cd FISCO-BCOS
113+
cd FISCO-BCOS
114114
# 切换到2.0版本
115115
git checkout master-2.0
116116
mkdir build && cd build

2.x/docs/tutorial/docker.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sudo yum install -y curl openssl openssl-devel
3232
cd ~ && mkdir -p fisco && cd fisco
3333

3434
## 下载脚本
35-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
35+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
3636
```
3737

3838
```eval_rst
@@ -129,10 +129,10 @@ Status: Image is up to date for fiscoorg/fiscobcos:v2.7.2
129129
c27dcaa0adfbf45820506f659913e6dacb8a148425801ea80ab078100a8d57b7 # 启动节点的 CONTAINER ID
130130
e66fe7c68d3a8db5d8c18fe5749eba25fd41350ebbaa7accbc8374e03bfba690 # 启动节点的 CONTAINER ID
131131
2bb7b89e2a46b9a4f92fbf9b48b39023540fccdae14de52e091fa17ea219905e # 启动节点的 CONTAINER ID
132-
node0 start successfully
133-
node2 start successfully
134-
node3 start successfully
135-
node1 start successfully
132+
node0 start successfully
133+
node2 start successfully
134+
node3 start successfully
135+
node1 start successfully
136136
```
137137

138138
## 5. 检查容器

2.x/docs/tutorial/enc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
[```build_chain.sh```](../tutorial/installation.md)脚本,用普通的操作方法,先生成节点。
2525

2626
``` shell
27-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
27+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
2828
```
2929

3030
```eval_rst

2.x/docs/tutorial/multihost.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
mkdir -p ~/fisco && cd ~/fisco
3232

3333
# 下载开发部署工具build_chain
34-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
34+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
3535
```
3636

3737
```eval_rst
@@ -45,9 +45,9 @@ curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/buil
4545
# 这里所有区块链节点均属于agencyA,并仅启动了群组1
4646
# (注: 下面的ip信息需要根据真实的机器IP填写)
4747
cat >> ipconf << EOF
48-
196.168.0.1 agencyA 1
49-
196.168.0.3 agencyA 1
50-
196.168.0.4 agencyA 1
48+
196.168.0.1 agencyA 1
49+
196.168.0.3 agencyA 1
50+
196.168.0.4 agencyA 1
5151
196.168.0.2 agencyA 1
5252
EOF
5353
```

2.x/docs/tutorial/mysql_node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ sudo yum install -y openssl openssl-devel curl
137137
mkdir -p ~/fisco && cd ~/fisco
138138

139139
## 下载脚本
140-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
140+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
141141
```
142142

143143
```eval_rst

2.x/en/docs/manual/storage_security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Each agency has a Key Manager. For specific deployment steps, please refer to [K
1616
Use the script [```build_chain.sh```] (../installation.md) to build a node with normal operations.
1717

1818
``` shell
19-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
19+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
2020
```
2121

2222
```eval_rst

3.x/zh_CN/docs/articles/3_features/36_cryptographic/national_cryptography_features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
buildchain.sh脚本的-g为国密编译选项,使用成功后会生成国密版的节点。默认从GitHub下载最新稳定版本可执行程序,操作方式:
7575

7676
```bash
77-
curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
77+
curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
7878
```
7979

8080
```eval_rst

3.x/zh_CN/docs/articles/4_tools/five_step_to_develop_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
(请先在home目录创建fisco目录,接下来都在这个目录操作)
1515

1616
```bash
17-
$ curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
17+
$ curl -LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
1818
```
1919

2020
```eval_rst

3.x/zh_CN/docs/articles/7_practice/build_chain_with_wsl_on_windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ wsl
9191
cd ~
9292
sudo apt install -y openssl curl
9393
cd ~ && mkdir -p fisco && cd fisco
94-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
94+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
9595
bash build_chain.sh -l 127.0.0.1:4 -p 30300,20200,8545
9696
```
9797

3.x/zh_CN/docs/sdk/nodejs_sdk/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 快速安装
22

3-
标签:``安装Node.js`` ``命令行工具``
3+
标签:``安装Node.js`` ``命令行工具``
44

55
----
66
## 环境要求
@@ -80,7 +80,7 @@ Node.js SDK内嵌CLI工具,供用户在命令行中方便地与区块链进行
8080

8181
```bash
8282
# 获取开发部署工具build_chain.sh脚本
83-
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.9.1/build_chain.sh && chmod u+x build_chain.sh
83+
curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh
8484
```
8585

8686
```eval_rst

0 commit comments

Comments
 (0)