remove unused nonce.clone method

This commit is contained in:
max furman 2021-03-29 23:02:41 -07:00
parent 440678cb62
commit 9aef84b9af

View file

@ -18,11 +18,6 @@ type dbNonce struct {
DeletedAt time.Time
}
func (dbn *dbNonce) clone() *dbNonce {
u := *dbn
return &u
}
// CreateNonce creates, stores, and returns an ACME replay-nonce.
// Implements the acme.DB interface.
func (db *DB) CreateNonce(ctx context.Context) (acme.Nonce, error) {