mirror of
https://github.com/tomoko-dev9/nntpchan.git
synced 2026-03-28 17:32:35 +01:00
9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
importScripts('./siphash-lib.js');
|
|
importScripts('./miner-js.js');
|
|
|
|
onmessage = function(e) {
|
|
var s = cuckoo["mine_cuckoo"](e.data[0], e.data[1]);
|
|
s.push(e.data[2]);
|
|
postMessage(s);
|
|
}
|