diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 04:34:57 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 04:34:57 +0800 |
commit | 375ca15f8c4f27c35c82de5410d601bd8d8655bd (patch) | |
tree | bb629c10f337d80bb3d533b8331cd457910c3de7 | |
parent | Add solver python script (diff) | |
download | powxy-375ca15f8c4f27c35c82de5410d601bd8d8655bd.tar.gz powxy-375ca15f8c4f27c35c82de5410d601bd8d8655bd.tar.zst powxy-375ca15f8c4f27c35c82de5410d601bd8d8655bd.zip |
Fix error message
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -148,7 +148,7 @@ func main() { h.Write(nonce) ck := h.Sum(nil) if !validateBitZeros(ck, difficulty) { - authPage("Your submission was incorrect.") + authPage("Your submission was incorrect, or your session has expired while submitting.") return } |