From dce62f3338452076771890df92b6b06f3616a2b5 Mon Sep 17 00:00:00 2001 From: Alok Date: Fri, 19 Jul 2024 19:00:06 +0530 Subject: [PATCH] fix: use defaults in opts --- p2p/pkg/preconfirmation/tracker/tracker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/pkg/preconfirmation/tracker/tracker.go b/p2p/pkg/preconfirmation/tracker/tracker.go index 5ef9f700c..514cd2910 100644 --- a/p2p/pkg/preconfirmation/tracker/tracker.go +++ b/p2p/pkg/preconfirmation/tracker/tracker.go @@ -269,7 +269,7 @@ func (t *Tracker) handleNewL1Block( // for bidder to open is only in cases of slashes as he will get refund. Only one // of bidder or provider should open the commitment as 1 of the txns would // fail. This delay is to ensure this. - t.logger.Info("bidder detected, processing block 2 behind the current one") + t.logger.Info("bidder detected, processing 2 blocks behind the current one") t.winners[newL1Block.BlockNumber.Int64()] = newL1Block pastBlock, ok := t.winners[newL1Block.BlockNumber.Int64()-2] if !ok {