Fixed compiler error
This commit is contained in:
parent
3f511de98f
commit
32e29e7063
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue