mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
er, the parameter is only known as h inside the called function
This commit is contained in:
parent
088c97bbf5
commit
1fd5ae1c9d
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ class session(object):
|
|||
self.die(r, r.BadRequest, uri="https://ca.example.com/failures/missingrequest")
|
||||
return
|
||||
# Check hashcash before doing any crypto or database access.
|
||||
if not m.request.clientpuzzle or not self.check_hashcash(h):
|
||||
if not m.request.clientpuzzle or not self.check_hashcash(m.request.clientpuzzle):
|
||||
self.die(r, r.NeedClientPuzzle, uri="https://ca.example.com/failures/hashcash")
|
||||
return
|
||||
if self.request_made():
|
||||
|
|
|
|||
Loading…
Reference in a new issue