Skip to content

Commit

Permalink
change log level for ooc (node level) when adding tx to the worker
Browse files Browse the repository at this point in the history
  • Loading branch information
agnusmor committed Aug 1, 2024
1 parent ede24c6 commit bab7074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sequencer/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (w *Worker) addTxTracker(ctx context.Context, tx *TxTracker, mutex *sync.Mu

// Make sure the transaction's reserved ZKCounters are within the constraints.
if !w.batchConstraints.IsWithinConstraints(tx.ReservedZKCounters) {
log.Errorf("outOfCounters error (node level) for tx %s", tx.Hash.String())
log.Infof("out of counters (node level) when adding tx %s from address %s", tx.Hash, tx.From)
mutexUnlock(mutex)
return nil, pool.ErrOutOfCounters
}
Expand Down

0 comments on commit bab7074

Please sign in to comment.