diff --git a/src/finalizer/utils/arbStack.ts b/src/finalizer/utils/arbStack.ts index b38e34723..173207268 100644 --- a/src/finalizer/utils/arbStack.ts +++ b/src/finalizer/utils/arbStack.ts @@ -110,6 +110,7 @@ export async function arbStackFinalizer( undefined, redis ); + const l2BlockTime = (await averageBlockTime(spokePoolClient.spokePool.provider)).average; logger.debug({ at: `Finalizer#${networkName}Finalizer`, message: `${networkName} TokensBridged event filter`, @@ -209,6 +210,9 @@ export async function arbStackFinalizer( logger.debug({ at: `Finalizer#${networkName}Finalizer`, message: `Withdrawal event for ${amountFromWei} of ${l1TokenInfo.symbol} is too recent to finalize`, + l2BlockTimeSeconds: l2BlockTime, + maturedHours: `${((spokePoolClient.latestBlockSearched - event.blockNumber) * l2BlockTime) / 60 / 60}`, + challengePeriodHours: `${getArbitrumOrbitFinalizationTime(chainId) / 60 / 60}`, }); } } catch (err) {