From b1b7257c2aae0bbee6d7d7b7267e4ed59a193c8c Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Wed, 18 Jul 2012 22:36:22 -0700 Subject: [PATCH] what kind of getopt is the upstream hashcash using, anyway? --- client-webserver/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-webserver/client.py b/client-webserver/client.py index 92439ad57..44a77da75 100755 --- a/client-webserver/client.py +++ b/client-webserver/client.py @@ -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