Skip to content

Commit

Permalink
Remove debugging lines
Browse files Browse the repository at this point in the history
  • Loading branch information
kirugan committed Nov 8, 2024
1 parent 27ab98e commit 3eed12f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions migration/migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -533,13 +533,10 @@ func calculateL1MsgHashes(dbTx db.Transaction, n *utils.Network) error {

var wg sync.WaitGroup
wg.Add(numOfWorkers)
fmt.Println("Num of workers")
for range numOfWorkers {
fmt.Println("setup worker")
workerPool.Go(func() error {
defer wg.Done()
for bNumber := range blockNumbers {
fmt.Println("Processing block", bNumber)
dbMx.Lock()
txns, err := blockchain.TransactionsByBlockNumber(dbTx, bNumber)
if err != nil {
Expand Down

0 comments on commit 3eed12f

Please sign in to comment.