You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some problem in synchronizer/synchronizer.go
func (s *Synchronizer) AdvanceView(syncInfo consensus.SyncInfo) {
v := consensus.View(0)
timeout := false
// check for a TC
if tc, ok := syncInfo.TC(); ok {
if !s.mods.Crypto().VerifyTimeoutCert(tc) {
s.mods.Logger().Info("Timeout Certificate could not be verified!")
return
}
if v > s.highTC.View() {
s.highTC = tc
}
v = tc.View()
timeout = true
}
I think v is always 0 when compare to s.highTC.View()
shuold we put v = tc.View() before that?
The text was updated successfully, but these errors were encountered:
I have some problem in
synchronizer/synchronizer.go
I think
v
is always 0 when compare tos.highTC.View()
shuold we put
v = tc.View()
before that?The text was updated successfully, but these errors were encountered: