Thanks for the cpu pointer!
I'm getting an error running the pool software. Here's what I do, each in its own tmux pane:
1. sudo ./bitmonerod
2. sudo ./simplewallet --wallet=x --password=x
3. redis-server
4. node init.js
After I type in "node init.js" I get this error:
module.js:322
throw err;
^
Error: Cannot find module '/home/me/pool/node_modules/init.js'
at Function.Module._resolveFilename (module.js:320:15)
at Function.Module._load (module.js:262:25)
at Function.Module.runMain (module.js:485:10)
at startup (node.js:112:16)
at node.js:865:3
The
init.js file is at /home/me/pool/init.js
Any ideas?
[UPDATE]...about 30 minutes later:
I copied /home/me/pool/init.js to /home/me/pool/node_modules/init.js and then ran
node init.js from the /home/me/pool/ directory, and now I get this error:
[master] Pool spawned on 2 thread(s)
[payments] Started
[unlocker] Started
[payments] No workers' balances reached the minimum payment threshold
[unlocker] No blocks candidates in redis
[api] API started & listening on port 8117
[api] Stat collection finished: 51 ms redis, 516ms daemon
module.js:322
throw err;
^
Error: Cannot find module 'multi-hashing'
at Function.Module._resolveFilename (module.js:320:15)
at Function.Module._load (module.js:262:25)
at Module.require (module.js:349:17)
at require (module.js:368:17)
at Object. (/home/me/pool/lib/pool.js:7:20)
at Module._compile (module.js:444:26)
at Object.Module._extensions..js (module.js:462:10)
at Module.load (module.js:339:32)
at Function.Module._load (module.js:294:12)
at Module.require (module.js:349:17)
...and this block of error messages keeps repeating. Any ideas?