aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 09:59:54 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 09:59:54 +0800
commitd7ff0c2449f66d34eaf553d5312a211058c83967 (patch)
treee463ef54498eba8cabad1ae70a04bb9822c682ff
parentHandle (i.e. ignore) all missing error checks (diff)
downloadpowxy-d7ff0c2449f66d34eaf553d5312a211058c83967.tar.gz
powxy-d7ff0c2449f66d34eaf553d5312a211058c83967.tar.zst
powxy-d7ff0c2449f66d34eaf553d5312a211058c83967.zip
Lower default difficulty
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index e11d6d0..06d43c2 100644
--- a/main.go
+++ b/main.go
@@ -27,7 +27,7 @@ var (
)
func init() {
- flag.UintVar(&difficulty, "difficulty", 20, "leading zero bits required for the challenge")
+ flag.UintVar(&difficulty, "difficulty", 17, "leading zero bits required for the challenge")
flag.StringVar(&listenAddr, "listen", ":8081", "address to listen on")
flag.StringVar(&destHost, "host", "127.0.0.1:8080", "destination host to proxy to")
flag.Parse()