aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index ce4fe1c..14e36ed 100644
--- a/main.go
+++ b/main.go
@@ -134,8 +134,8 @@ document.addEventListener("DOMContentLoaded", function() {
nonce++;
- // Update status every 65536 tries
- if ((nonce & 0xFFFFn) === 0n) {
+ // Update status every 256 tries
+ if ((nonce & 0x00FFn) === 0n) {
status_el.textContent = "Tried " + nonce + " candidates so far...";
await new Promise(r => setTimeout(r, 0));
}