Skip to content

Commit cc61206

Browse files
committed
modernize
1 parent 2832ee4 commit cc61206

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sequencers/single/sequencer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ func (c *Sequencer) GetNextBatch(ctx context.Context, req coresequencer.GetNextB
206206
// Create ForceIncludedMask: true for forced txs, false for mempool txs.
207207
// Forced included txs are always first in the batch.
208208
batch.ForceIncludedMask = make([]bool, len(batch.Transactions))
209-
for i := 0; i < len(forcedTxs); i++ {
209+
for i := range len(forcedTxs) {
210210
batch.ForceIncludedMask[i] = true
211211
}
212212

0 commit comments

Comments
 (0)