2

如何使用锯齿超级账本锯齿应用程序在网络上发布我的节点

我是锯齿新手,尝试在 git repro 下面使用

git repro 为此 我找到了一些关于此 https://lists.hyperledger.org/pipermail/hyperledger-stl/2018-January/000146.html的链接

这是锯齿的课程指南

超级账本课程指南link

已经在 GitHub 上提问 https://github.com/hyperledger/education/issues/18

这是我正在使用的代码 https://github.com/hyperledger/education/tree/master/LFS171x/sawtooth-material/sawtooth-tuna

4

1 回答 1

3

如果我们希望使用该文件连接两个节点,您只需要以下需要使用validator.toml,里面/etc/sawtooth

如果该文件不存在,那么我们需要创建该文件:

$ cd /etc/sawtooth
$ sudo touch validator.toml

请记住执行以下行以使用锯齿运行验证器:

$ sudo chown root:sawtooth validator.toml

示例validator.toml文件内容:

# Set the network and component endpoints
bind = [
 "network:tcp://127.0.0.1:8800",
 "component:tcp://127.0.0.1:4004"
]
# The type of peering approach the validator should take
peering = "static"
# Advertised network endpoint
endpoint = "tcp://127.0.0.1:8800"
# Uris to initially connect to the validator network
seeds = ["tcp://127.0.0.1:8801"]
# A list of peers to attempt to connect to
peers = ["tcp://127.0.0.1:8801"]
于 2018-01-31T10:01:43.877 回答