This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Support ZMQ block notify for Bitcoin family. Fixes #151. - Adjust Lyra2v2 Hashrate multiplier. Fixes #168 - Made RPC polling optional - Updated configuration examples to be closer to real world usage - Added no RPC polling config example
- Loading branch information
Oliver Weichhold
authored
Jan 15, 2018
1 parent
5bd7574
commit 2c62848
Showing
17 changed files
with
247 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"logging": { | ||
"level": "info", | ||
"enableConsoleLog": true, | ||
"enableConsoleColors": true, | ||
"logFile": "", | ||
"logBaseDirectory": "", | ||
"perPoolLogFile": false | ||
}, | ||
"banning": { | ||
"manager": "integrated", | ||
"banOnJunkReceive": true, | ||
"banOnInvalidShares": false | ||
}, | ||
"notifications": { | ||
"enabled": true, | ||
"email": { | ||
"host": "smtp.example.com", | ||
"port": 587, | ||
"user": "user", | ||
"password": "password", | ||
"fromAddress": "[email protected]", | ||
"fromName": "support" | ||
}, | ||
"admin": { | ||
"enabled": false, | ||
"emailAddress": "[email protected]", | ||
"notifyBlockFound": true | ||
} | ||
}, | ||
"persistence": { | ||
"postgres": { | ||
"host": "127.0.0.1", | ||
"port": 5432, | ||
"user": "miningcore", | ||
"password": "password", | ||
"database": "miningcore" | ||
} | ||
}, | ||
"paymentProcessing": { | ||
"enabled": true, | ||
"interval": 600, | ||
"shareRecoveryFile": "recovered-shares.txt" | ||
}, | ||
"pools": [{ | ||
"id": "dash1", | ||
"enabled": true, | ||
"coin": { | ||
"type": "DASH" | ||
}, | ||
"address": "XgmfWd5DXWGcYhxPcDPUJk44Cnh2e8tZk7", | ||
"rewardRecipients": [{ | ||
"address": "XgmfWd5DXWGcYhxPcDPUJk44Cnh2e8tZk7", | ||
"percentage": 0 | ||
}], | ||
"zmqBlockNotifySocket": "tcp://127.0.0.1:3000", | ||
"jobRebroadcastTimeout": 10, | ||
"clientConnectionTimeout": 600, | ||
"banning": { | ||
"enabled": true, | ||
"time": 600, | ||
"invalidPercent": 50, | ||
"checkThreshold": 50 | ||
}, | ||
"ports": { | ||
"3062": { | ||
"listenAddress": "0.0.0.0", | ||
"difficulty": 1024, | ||
"name": "ASIC Mining", | ||
"varDiff": { | ||
"minDiff": 512, | ||
"targetTime": 15, | ||
"retargetTime": 90, | ||
"variancePercent": 30 | ||
} | ||
} | ||
}, | ||
"daemons": [{ | ||
"host": "127.0.0.1", | ||
"port": 9998, | ||
"user": "user", | ||
"password": "password" | ||
}], | ||
"paymentProcessing": { | ||
"enabled": true, | ||
"minimumPayment": 0.5, | ||
"payoutScheme": "PPLNS", | ||
"payoutSchemeConfig": { | ||
"factor": 2.0 | ||
} | ||
} | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.