File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -329,7 +329,7 @@ export class WaitingTimeService {
329
329
330
330
if ( isInPast ) {
331
331
this . logger . warn (
332
- `Request with id ${ request . id } was calculated with finalisation in past (finalizationIn=${ finalizationIn } ) and going to be recalculated` ,
332
+ `Request with id ${ request . id } was calculated with finalisation in past (finalizationIn=${ ms } ) and going to be recalculated` ,
333
333
) ;
334
334
// if calculation wrong points to past then validators is not excited in time
335
335
// we need recalculate
@@ -348,9 +348,10 @@ export class WaitingTimeService {
348
348
// temporary fallback for negative results, can be deleted after validator balances computation improvements
349
349
if ( ms < 0 ) {
350
350
this . logger . warn (
351
- `Request with id ${ request . id } was recalculated and finalisation still in points to past (recalculated finalizationIn=${ ms } ). Fallback to next frame` ,
351
+ `Request with id ${ request . id } was recalculated and finalisation still in past (recalculated finalizationIn=${ ms } ). Fallback to next frame` ,
352
352
) ;
353
- finalizationIn = this . genesisTimeService . timeToWithdrawalFrame ( currentFrame + 1 , requestTimestamp ) ;
353
+ finalizationIn =
354
+ this . genesisTimeService . timeToWithdrawalFrame ( currentFrame + 1 , requestTimestamp ) + GAP_AFTER_REPORT ;
354
355
}
355
356
356
357
return {
You can’t perform that action at this time.
0 commit comments