Skip to content

Commit b16e679

Browse files
committed
fix: correct block processed ts
1 parent 29dcb55 commit b16e679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/pkg/api/data_access/vdb_consolidations.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ func (d *DataAccessService) GetValidatorDashboardExecutionLayerConsolidations(ct
214214
row.Status = "processed"
215215
blockProcessed := uint64(res.BlockProcessed.Int64)
216216
row.BlockProcessed = &blockProcessed
217-
row.TimestampProcessed = &res.BlockProcessed.Int64
217+
row.TimestampProcessed = &res.BlockProcessedTime.Int64
218218
} else {
219219
row.Status = "queued"
220220
// TODO implement estimate

0 commit comments

Comments
 (0)