Skip to content

Latest commit

 

History

History

heco-deploy-doc

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

搭建2个节点的heco测试链,使用congress共识

编译heco代码

参考:https://learnblockchain.cn/article/3844

使用v1.2.2版本

git checkout v1.2.2

# 编译geth
make 

#创建geth软连接
ln -s xxxx/build/bin/geth /usr/bin/geth

# 执行以下命令,安装bootnode
env GOBIN= go install ./cmd/bootnode


ln -s $GOBIN/bootnode /usr/bin/bootnode

部署

使用 myheco 中的Makefile

make clean
make init

# 在终端1执行
make bootnode

# 在终端2执行
make start-node1

# 在终端3执行
make start-node2