Skip to content

Commit 4067714

Browse files
committed
feat: wait 30s before getting blob
1 parent bcf6c6c commit 4067714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

op-batcher/batcher/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ func (l *BatchSubmitter) submitBlobToNearDA(data []byte) (frameRef []byte, err e
529529

530530
// finality is achieved which is 3 blocks (around 2-3 seconds) its not possible for a reorg to happen
531531
// check the submitted blob after finality
532-
time.Sleep(10 * time.Second)
532+
time.Sleep(30 * time.Second)
533533
blobData, err := daClient.Get(frameRef, 0)
534534
if err != nil {
535535
log.Error("failed to get blob from near da, maybe chain reorg", "id", hex.EncodeToString(data), "err", err)

0 commit comments

Comments
 (0)