I already had the exact same settings for the payments section but payments don't go thru:
"payments": {
"enabled": true,
"interval": 600,
"maxAddresses": 50,
"mixin": 12,
"transferFee": 50000000000,
"minPayment": 10000000000000,
"denomination": 1000000000000
},
Log simply says failed payment. Any ideas?
Thanks!
I would get on Masari'sReddit page and ask the guy who made the pool video. I see him on their quite a bit. Goodluck
Thanks...will try that...
Sup Bro,
If your using my video, i just wanna make sure you have checked a few things. When I ran into issue with sending payments, it was the masari-wallet-rpc application which wasn't set up correctly. I have it right in the video [after messing up and redoing it in the video] but all was working well. If the problem is prior to the automatic payouts, check out my config.json file to double check. Also please don't hesitate to delete your config.json and create new from the config_example.json file - incase a comma or something small is missing.
and double check your wallet address. If not, maybe a dependancy is missing, so start with a new OS installation and try again. It took me about 15 'start-overs' before i got it working stable.
What I recommend [if the issue is somewhere in the config.json file is to remove and recreate it.
$ cd pool/
pool$ ls
config_example.json config.json init.js lib LICENSE logs node_modules package.json README.md redisBlocksUpgrade.js website_example
pool$ rm -r config.json
pool$ cp config_example.json config.json
pool$ sudo nano config.json
//items changed are in bold - dont be lazy and cut and paste, look for the values and change them manually.
{
"coin": "
masari",
"symbol": "
MSR",
"logging": {
"files": {
"level": "info",
"directory": "logs",
"flushInterval": 5
},
"console": {
"level": "info",
"colors": true
}
},
"poolServer": {
"enabled": true,
"clusterForks": "auto",
"poolAddress": "
5oKFSDn6vcEM89cgJ3EJw7Vb5PVmVNTE8EAVT5TJsCYFLotmkgxyrsDMwFCwqMtsYuDD4ECmbbDbCJC mbLi9suw1NXqArfu",
"blockRefreshInterval": 1000,
"minerTimeout": 900,
"ports": [
{
"port": 3333,
"difficulty": 1000,
"desc": "CPU Mining Port"
},
{
"port": 5555,
"difficulty": 5000,
"desc": "GPU Mining Port"
},
{
"port": 7777,
"difficulty": 400500,
"desc": "NiceHash Mining Port"
},
{
"port": 8881,
"difficulty": 400500,
"desc": "Hidden",
"hidden": true
}
],
"varDiff": {
"minDiff": 2,
"maxDiff":
600000,
"targetTime": 100,
"retargetTime": 30,
"variancePercent": 30,
"maxJump": 100
},
"shareTrust": {
"enabled": true,
"min": 10,
"stepDown": 3,
"threshold": 10,
"penalty": 30
},
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 25,
"checkThreshold": 30
},
"slushMining": {
"enabled": false,
"weight": 300,
"blockTime": 60,
"lastBlockCheckRate": 1
}
},
"payments": {
"enabled": true,
"interval": 600,
"maxAddresses": 50,
"mixin":
12,
"transferFee":
5000000000,
"minPayment":
1000000000000,
"denomination":
1000000000000 },
"blockUnlocker": {
"enabled": true,
"interval": 30,
"depth": 60,
"poolFee": 0.0,
"devDonation": 0.0,
"coreDevDonation": 0.0
},
"api": {
"enabled": true,
"hashrateWindow": 600,
"updateInterval": 5,
"port": 8117,
"blocks": 30,
"payments": 30,
"password": "
test"
},
"daemon": {
"host": "127.0.0.1",
"port":
38081 },
"wallet": {
"host": "127.0.0.1",
"port":
38082 },
"redis": {
"host": "127.0.0.1",
"port": 6379,
"auth": null
}
}
CTRL+X
Overwrite Changes? 'Y' then [Enter]
Tell me if you have any luck