chore: linting

This commit is contained in:
Aravinth Manivannan 2023-02-02 00:29:24 +05:30
parent 1a466bbd3c
commit 7a2cc1646d
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 0 additions and 1 deletions

View File

@ -34,7 +34,6 @@ const prove = async (config: PoWConfig): Promise<number> => {
if (WasmSupported) {
const wasm = await require("@mcaptcha/pow-wasm");
const t0 = performance.now();
console.log(JSON.stringify(wasm))
wasm.gen_pow(config.salt, config.string, config.difficulty_factor);
const t1 = performance.now();
duration = t1 - t0;