From d562b55801f0a6e35a863277a17594f0e2ec8d2b Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sun, 26 Jul 2026 01:34:30 -0700 Subject: [PATCH] Fix validation tool. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 4801165..19f5076 100644 --- a/index.html +++ b/index.html @@ -271,7 +271,7 @@ SPDX-License-Identifier: GPL-3.0-or-later if (work.length === 16 && hash.length === 64) { NanoPow.work_validate(work, hash, { difficulty }) .then(result => { - validation.innerText = result + validation.innerText = +result.valid ? `\u2713` : `\u274c` }) -- 2.52.0