never set the certfp lookup key before verification

This commit is contained in:
Shivaram Lingamneni 2020-01-06 12:53:21 -05:00
parent 1b35c6887f
commit a120cc2443
1 changed files with 0 additions and 3 deletions

View File

@ -378,9 +378,6 @@ func (am *AccountManager) Register(client *Client, account string, callbackNames
tx.Set(registeredTimeKey, registeredTimeStr, setOptions) tx.Set(registeredTimeKey, registeredTimeStr, setOptions)
tx.Set(credentialsKey, credStr, setOptions) tx.Set(credentialsKey, credStr, setOptions)
tx.Set(callbackKey, callbackSpec, setOptions) tx.Set(callbackKey, callbackSpec, setOptions)
if certfp != "" {
tx.Set(certFPKey, casefoldedAccount, setOptions)
}
return nil return nil
}) })
}() }()