mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-19 23:16:48 +00:00
CI/build: Update Go version, linters and fix minor issues (#1612)
* CI/build: Update Go version, linters and fix minor issues * linters: Add intrange, copyloopvar, additional go vet linters to match gopls and fix issues
This commit is contained in:
@@ -99,7 +99,7 @@ func TestScript(t *testing.T) {
|
||||
|
||||
func writeScript() {
|
||||
var wg sync.WaitGroup
|
||||
for x := 0; x < 20; x++ {
|
||||
for x := range 20 {
|
||||
wg.Add(1)
|
||||
|
||||
go func(x int) {
|
||||
|
||||
Reference in New Issue
Block a user