mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
what kind of getopt is the upstream hashcash using, anyway?
This commit is contained in:
parent
c89a0e8f8e
commit
b1b7257c2a
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ def make_request(m, csr):
|
|||
m.request.recipient = server
|
||||
m.request.timestamp = int(time.time())
|
||||
m.request.csr = csr
|
||||
hashcash_command = "hashcash -P -m -b %d -r %s -z 12" % (difficulty, server)
|
||||
hashcash_command = "hashcash -P -m -z 12 -b %d -r %s" % (difficulty, server)
|
||||
hashcash = subprocess.check_output(hashcash_command.split(), preexec_fn=drop_privs, shell=False).rstrip()
|
||||
if hashcash: m.request.clientpuzzle = hashcash
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue