diff options
author | fireice-uk <fireice-uk@users.noreply.github.com> | 2018-04-18 20:48:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-18 20:48:35 +0100 |
commit | 041cc606bb56dd23d7eb6d6a609e152e621da8fa (patch) | |
tree | 2adcf6b8a0a34b3374869669edc134c21c33eb92 | |
parent | ddf75c8b1156b879620d130e01179120a38e15bb (diff) | |
parent | 0d1993c228345455b18172610a54975112cd64cf (diff) | |
download | xmr-stak-041cc606bb56dd23d7eb6d6a609e152e621da8fa.zip xmr-stak-041cc606bb56dd23d7eb6d6a609e152e621da8fa.tar.gz |
Merge pull request #1454 from psychocrypt/bbscoin-dev
BBSCoin support and get ready for cryptonight v7 upgrade
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | xmrstak/jconf.cpp | 3 | ||||
-rw-r--r-- | xmrstak/pools.tpl | 1 |
3 files changed, 4 insertions, 1 deletions
@@ -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: - [Aeon](http://www.aeon.cash) +- [BBSCoin](https://www.bbscoin.xyz) - [Croat](https://croat.cat) - [Edollar](https://edollar.cash) - [Electroneum](https://electroneum.com) diff --git a/xmrstak/jconf.cpp b/xmrstak/jconf.cpp index d792db1..3af4028 100644 --- a/xmrstak/jconf.cpp +++ b/xmrstak/jconf.cpp @@ -88,7 +88,8 @@ constexpr size_t iConfigCnt = (sizeof(oConfigValues)/sizeof(oConfigValues[0])); xmrstak::coin_selection coins[] = { // 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_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_heavy", {cryptonight_heavy, cryptonight_heavy, 0u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr }, diff --git a/xmrstak/pools.tpl b/xmrstak/pools.tpl index 9c38fd6..58ca8b5 100644 --- a/xmrstak/pools.tpl +++ b/xmrstak/pools.tpl @@ -21,6 +21,7 @@ POOLCONF], * Currency to mine. Supported values: * * aeon7 (use this for Aeon's new PoW) + * bbscoin (automatic switch with block version 3 to cryptonight_v7) * croat * edollar * electroneum |