Skip to content
Snippets Groups Projects
Commit a02545e1 authored by Ran Ding's avatar Ran Ding
Browse files

Add BBSCoin support and get ready for cryptonight v7 upgrade

parent 3c53c43c
No related branches found
No related tags found
No related merge requests found
...@@ -41,6 +41,7 @@ XMR-Stak is a universal Stratum pool miner. This miner supports CPUs, AMD and NV ...@@ -41,6 +41,7 @@ XMR-Stak is a universal Stratum pool miner. This miner supports CPUs, AMD and NV
Besides [Monero](https://getmonero.org), following coins can be mined using this miner: Besides [Monero](https://getmonero.org), following coins can be mined using this miner:
- [Aeon](http://www.aeon.cash) - [Aeon](http://www.aeon.cash)
- [BBSCoin](https://www.bbscoin.xyz)
- [Croat](https://croat.cat) - [Croat](https://croat.cat)
- [Edollar](https://edollar.cash) - [Edollar](https://edollar.cash)
- [Electroneum](https://electroneum.com) - [Electroneum](https://electroneum.com)
......
...@@ -88,7 +88,8 @@ constexpr size_t iConfigCnt = (sizeof(oConfigValues)/sizeof(oConfigValues[0])); ...@@ -88,7 +88,8 @@ constexpr size_t iConfigCnt = (sizeof(oConfigValues)/sizeof(oConfigValues[0]));
xmrstak::coin_selection coins[] = { xmrstak::coin_selection coins[] = {
// name, userpool, devpool, default_pool_suggestion // name, userpool, devpool, default_pool_suggestion
{ "aeon7", {cryptonight_aeon, cryptonight_lite, 7u}, {cryptonight_aeon, cryptonight_lite, 7u}, "mine.aeon-pool.com:5555" }, { "aeon7", {cryptonight_aeon, cryptonight_lite, 7u}, {cryptonight_aeon, cryptonight_lite, 7u}, "mine.aeon-pool.com:5555" },
{ "bbscoin", {cryptonight_monero, cryptonight, 3u}, {cryptonight_monero, cryptonight, 3u}, "pool.bbscoin.xyz:3333" },
{ "croat", {cryptonight_monero, cryptonight, 255u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr }, { "croat", {cryptonight_monero, cryptonight, 255u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr },
{ "cryptonight", {cryptonight_monero, cryptonight, 255u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr }, { "cryptonight", {cryptonight_monero, cryptonight, 255u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr },
{ "cryptonight_heavy", {cryptonight_heavy, cryptonight_heavy, 0u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr }, { "cryptonight_heavy", {cryptonight_heavy, cryptonight_heavy, 0u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr },
......
...@@ -21,6 +21,7 @@ POOLCONF], ...@@ -21,6 +21,7 @@ POOLCONF],
* Currency to mine. Supported values: * Currency to mine. Supported values:
* *
* aeon7 (use this for Aeon's new PoW) * aeon7 (use this for Aeon's new PoW)
* bbscoin
* croat * croat
* edollar * edollar
* electroneum * electroneum
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment