Fixed compiler error

This commit is contained in:
WolverinDEV 2019-11-24 23:59:46 +01:00
parent 3f511de98f
commit 32e29e7063

View file

@ -75,7 +75,7 @@ onmessage = function(e: MessageEvent) {
memory_u8[0x0A0 + key_offset + hash_offset++] = char.charCodeAt(0);
}
let level = wasm_object.instance.exports.mine(key_offset, hash_offset, iterations, target > 1 ? target - 1 : target);
let level = (<any>wasm_object).instance.exports.mine(key_offset, hash_offset, iterations, target > 1 ? target - 1 : target);
hash = "";
hash_offset = 0;