mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-12 04:41:22 +00:00
consensus: use replay log to avoid sign regression
This commit is contained in:
@ -85,7 +85,10 @@ func NewNode(privValidator *types.PrivValidator) *Node {
|
||||
}
|
||||
|
||||
// deterministic accountability
|
||||
consensusState.OpenFileForMessageLog(config.GetString("cs_msg_log"))
|
||||
err = consensusState.OpenFileForMessageLog(config.GetString("cs_msg_log"))
|
||||
if err != nil {
|
||||
log.Error("Failed to open cs_msg_log", "error", err.Error())
|
||||
}
|
||||
|
||||
// Make p2p network switch
|
||||
sw := p2p.NewSwitch()
|
||||
|
Reference in New Issue
Block a user