@@ -0,0 +1,10 @@
package elect
import (
"math/rand"
"time"
)
func RandDurationN(n time.Duration) time.Duration {
return time.Duration(rand.Int63n(int64(n))) //nolint:gosec
}
The note is not visible to the blocked user.