我最近使用 Docker-compose 部署了结构网络,我试图模拟一个宕机的对等点。本质上是这样的:
- 使用运行结构网络的 docker-compose 使 4 个对等点联机
- 1 个对等点,即第 4 个对等点出现故障(通过 docker stop 命令完成)
- 调用事务被发送到根对等体,在一段时间后通过查询对等体进行验证(不包括被关闭的对等体)。
- 被关闭的对等体通过 docker start 重新启动。查询事务在始终在线的对等点上运行良好,但在新唤醒的对等点上失败。
Why isn't the 4th peer synchronizing the blockchain, once its up.Is there a step to be taken to ensure it does? Or is it discarded as a rogue peer.