diff --git a/acme/jws.go b/acme/jws.go index 928e277c..1fc9eaba 100644 --- a/acme/jws.go +++ b/acme/jws.go @@ -9,8 +9,8 @@ import ( "fmt" "net/http" - "gopkg.in/square/go-jose.v1" "errors" + "gopkg.in/square/go-jose.v1" "time" ) @@ -110,8 +110,8 @@ func (j *jws) Nonce() (string, error) { // get nonce ok and can continue break } - if(i < TRY_COUNT -1) { - time.Sleep(RETRY_PAUSE); + if i < TRY_COUNT-1 { + time.Sleep(RETRY_PAUSE) } } }