chore(web/js): delete proof-of-work-slow.mjs

This code has served its purpose and now needs to be retired to the
great beyond. There is no replacement for this, the fast implementation
will be used instead.

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso
2025-08-01 21:10:36 +00:00
parent 8d08de6d9c
commit c5618a0b2a
2 changed files with 3 additions and 103 deletions

View File

@@ -1,9 +1,8 @@
import processFast from "./proof-of-work.mjs";
import processSlow from "./proof-of-work-slow.mjs";
import process from "./proof-of-work.mjs";
const algorithms = {
fast: processFast,
slow: processSlow,
fast: process,
slow: process,
};
// from Xeact