diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 11:13:20 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 11:13:20 +0800 |
commit | a3d61001a098f0f08e23bdaeadc672b8a9166b21 (patch) | |
tree | 5892f136c37928b8c2f864586cbbf79502ca7f91 | |
parent | Note that we should allow git clients and rss readers etc (diff) | |
download | powxy-a3d61001a098f0f08e23bdaeadc672b8a9166b21.tar.gz powxy-a3d61001a098f0f08e23bdaeadc672b8a9166b21.tar.zst powxy-a3d61001a098f0f08e23bdaeadc672b8a9166b21.zip |
Note when subtlecrypto is in use
-rw-r--r-- | tmpl.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ document.addEventListener("DOMContentLoaded", function() { // Update status every 256 tries if ((nonce & 0x00FFn) === 0n) { - status_el.textContent = "Tried " + nonce + " candidates so far..."; + status_el.textContent = "Attempting to solve automatically via SubtleCrypto. Tried " + nonce + " candidates so far..."; await new Promise(r => setTimeout(r, 0)); } } |