Skip to content

Commit c23ed20

Browse files
committed
Fix lint
1 parent dee8244 commit c23ed20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

execution/gethexec/sequencer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ func (s *Sequencer) PublishAuctionResolutionTransaction(ctx context.Context, tx
614614
log.Info("Prioritizing auction resolution transaction from auctioneer", "txHash", tx.Hash().Hex())
615615
s.timeboostAuctionResolutionTxQueue <- txQueueItem{
616616
tx: tx,
617-
txSize: int(tx.Size()),
617+
txSize: int(tx.Size()), // #nosec G115
618618
options: nil,
619619
resultChan: make(chan error, 1),
620620
returnedResult: &atomic.Bool{},
@@ -706,7 +706,7 @@ func (s *Sequencer) publishTransactionToQueue(queueCtx context.Context, tx *type
706706

707707
queueItem := txQueueItem{
708708
tx: tx,
709-
txSize: int(tx.Size()),
709+
txSize: int(tx.Size()), // #nosec G115
710710
options: options,
711711
resultChan: resultChan,
712712
returnedResult: &atomic.Bool{},

0 commit comments

Comments
 (0)