aboutsummaryrefslogtreecommitdiff
path: root/account.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-12-10 13:15:55 +0100
committerDimitri Sokolyuk <demon@dim13.org>2015-12-10 13:15:55 +0100
commit54f6c23a9670700e8a7d14858173e19221e16550 (patch)
tree61a971cdcb551c2b666cf35519fce2692adeb18d /account.go
parentf576e74ce6891ce05882d536428f9bf9979910a2 (diff)
Move nonce into client
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 {