mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
no longer use Python hashcash library
This commit is contained in:
parent
4352ff0e13
commit
93f7afbf82
1 changed files with 0 additions and 1 deletions
|
|
@ -61,7 +61,6 @@ def make_request(m, csr):
|
|||
m.request.recipient = server
|
||||
m.request.timestamp = int(time.time())
|
||||
m.request.csr = csr
|
||||
m.request.clientpuzzle = hashcash.mint(server, difficulty)
|
||||
hashcash_command = "hashcash -P -m -b %d -r %s" % (difficulty, server)
|
||||
m.request.clientpuzzle = subprocess.check_output(hashcash_command.split(), shell=False).rstrip()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue