diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/consensus.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/consensus.go b/core/consensus.go index ccb3326..d2c6dc3 100644 --- a/core/consensus.go +++ b/core/consensus.go @@ -845,6 +845,10 @@ func (con *Consensus) initialRound( con.logger.Warn("Failed to update nodeSetCache", "round", round+1, "error", err) } + if _, _, err := con.bcModule.vGetter.UpdateAndGet(round + 1); err != nil { + con.logger.Warn("Failed to update tsigVerifierCache", + "round", round+1, "error", err) + } }() }) } |