ssvlabs / ssv-spec

GNU General Public License v3.0
25 stars 22 forks source link

Drop unnecessary nolint comments #477

Closed MatheusFranco99 closed 3 weeks ago

MatheusFranco99 commented 1 month ago

Overview

This PR drops unnecessary nolint comments.

There were lint errors related to the unused variables quickTimeoutThreshold, quickTimeout and slowTimeout in timeout.go. To resolve these errors while preserving their intended use as informative constants for implementation, these variables have been capitalised to make them exported (accessible outside their package), avoiding the lint errors.

Note: There are still nolint comments in encryption.go but the related function will be fixed in another PR.