aboutsummaryrefslogtreecommitdiff
path: root/account.go
diff options
context:
space:
mode:
Diffstat (limited to 'account.go')
-rw-r--r--account.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/account.go b/account.go
index a17d931..38121f6 100644
--- a/account.go
+++ b/account.go
@@ -3,7 +3,6 @@ package acme
import (
"crypto/rand"
"crypto/rsa"
- "errors"
"fmt"
"net/http"
"net/mail"
@@ -63,8 +62,6 @@ func (a *Account) ParseSigned(msg []byte) ([]byte, error) {
return obj.Verify(&a.PrivKey.PublicKey)
}
-var errNoNonces = errors.New("No nonces available")
-
// Nonce implements jose nonce provider
func (a Account) Nonce() (string, error) {
select {