Skip to content

Commit b5d430f

Browse files
committed
remove lint directive
1 parent 84f6df2 commit b5d430f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

execution/market.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2546,7 +2546,7 @@ func (m *Market) orderCancelReplace(ctx context.Context, existingOrder, newOrder
25462546
// Because other collections might be pointing at the original order
25472547
// use it's memory when inserting the new version
25482548
*existingOrder = *newOrder
2549-
conf, err = m.matching.SubmitOrder(existingOrder) //lint:ignore SA4006 this value might be overwriter, careful!
2549+
conf, err = m.matching.SubmitOrder(existingOrder)
25502550
if err != nil {
25512551
m.log.Panic("unable to submit order", logging.Error(err))
25522552
}

0 commit comments

Comments
 (0)