diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 09:59:54 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 09:59:54 +0800 |
commit | d7ff0c2449f66d34eaf553d5312a211058c83967 (patch) | |
tree | e463ef54498eba8cabad1ae70a04bb9822c682ff /main.go | |
parent | Handle (i.e. ignore) all missing error checks (diff) | |
download | powxy-d7ff0c2449f66d34eaf553d5312a211058c83967.tar.gz powxy-d7ff0c2449f66d34eaf553d5312a211058c83967.tar.zst powxy-d7ff0c2449f66d34eaf553d5312a211058c83967.zip |
Lower default difficulty
Diffstat (limited to '')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |