for all those who are promoting "lets spread the hash around" , im trying to build a pool and keep getting this error:
module.js:340
throw err;
^
Error: Cannot find module '/home/mylin/Pools/dcy-pool/node_modules/bignum/binding/bignum.node'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object. (/home/mylin/Pools/dcy-pool/node_modules/bignum/index.js:4:11)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
2018-02-20 16:12:07 [master] Pool fork 4 died, spawning replacement worker...
any ideas?
im using default code from
https://github.com/forknote/cryptonote-forknote-pool with no changes in it except the usual coin and nginx setup!
this is the package.json :
{
"name": "forknote-pool",
"version": "0.0.1",
"license": "GPL-2.0",
"authors": "Matthew Little",
"repository": {
"type": "git",
"url": "https://github.com/forknote/forknote-pool"
},
"dependencies": {
"bignum": "*",
"async": "1",
"redis": "*",
"cli-color": "*",
"dateformat": "*",
"base58-native": "*",
"multi-hashing": "git://github.com/fancoder/node-multi-hashing.git",
"cryptonote-util": "git://github.com/forknote/node-cryptonote-util.git"
},
"engines": {
"node": ">=0.10"
}
}