We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d74f552 commit d1a0911Copy full SHA for d1a0911
1 file changed
Build/src/main.js
@@ -463,7 +463,7 @@
463
status.textContent = `Challenge received! Prefix: ${data.prefix.substring(0, 16)}...Target: ${data.target.substring(0, 16)}...`;
464
} catch (err) {
465
status.className = 'challenge-status error';
466
- status.textContent = 'Failed to get challenge: ' + getErrorMessage(err);
+ status.textContent = 'Failed to get challenge: ' + getErrorMessage(err);
467
}
468
});
469
@@ -482,7 +482,7 @@
482
483
while (!solverCancel) {
484
for (let i = 0; i < batchSize && !solverCancel; i++) {
485
- const input = `${prefix}: ${nonce}`;
+ const input = `${prefix}:${nonce}`;
486
const hash = await sha256Hex(input);
487
488
if (hash < target.toLowerCase()) {
@@ -598,4 +598,4 @@
598
599
// Init
600
console.log('LRCGetter Frontend loaded');
601
-})();
+})();
0 commit comments