We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f79afb commit 95a2c22Copy full SHA for 95a2c22
eth/catalyst/api.go
@@ -656,7 +656,7 @@ func (api *ConsensusAPI) heartbeat() {
656
if deltaTime > 0 {
657
growth := deltaDiff / deltaTime
658
left := new(big.Int).Sub(ttd, htd)
659
- eta = time.Duration(new(big.Int).Div(left, new(big.Int).SetUint64(growth)).Uint64()) * time.Second
+ eta = time.Duration(new(big.Int).Div(left, new(big.Int).SetUint64(growth+1)).Uint64()) * time.Second
660
}
661
662
message := "Merge is configured, but previously seen beacon client is offline. Please ensure it is operational before the transition arrives!"
0 commit comments