- free to join
- not fully p2p. non-relay node connect to relay node
- relays / non-relays
- join consensus / not join consensus
carpenter -d data
# you can monitor the consensus process using the carpenter tool for a given node.
# This tool parses the node.log file and prints out details for consensus-related events.
watch ./goal node status -d data
watch ./goal node lastround -d data
- non-relay node don't need open port through firewall,don't store full state
- can create a private network
为什么algorand的leader选出来之后还要进行第二轮投票(验证者投票=委员会投票)
因为leader有1/3的概率是坏人,可以同时签多个区块来分叉攻击
而经过BA后分叉的概率就可以控制在极小值(SV中超过2/3是恶意节点的极端情况下)。Algorand抽签与Bitcoin算力抽签最大的不同之处在于,PoW不是预先抽签确定出块者身份,而是对交易打包后的区块进行算力抽签,因此发布多个不同区块的成本极高(几乎不可能),而Algorand中选中的Leader发布多个不同区块几乎没有成本。