minimal-tilt-fix: Lets make this ready even if the chain is not ticking

This commit is contained in:
Josh Siegel 2022-10-27 11:12:14 +00:00 committed by Evan Gray
parent 2dc4faa084
commit 9fd4c7d6e1
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,6 @@ func (e *Watcher) Run(ctx context.Context) error {
}
e.next_round = e.next_round + 1
readiness.SetReady(common.ReadinessAlgorandSyncing)
currentAlgorandHeight.Set(float64(e.next_round))
p2p.DefaultRegistry.SetNetworkStats(vaa.ChainIDAlgorand, &gossipv1.Heartbeat_Network{
Height: int64(e.next_round),
@ -251,6 +250,7 @@ func (e *Watcher) Run(ctx context.Context) error {
}
}
}
readiness.SetReady(common.ReadinessAlgorandSyncing)
}
}
}