From d1afcec292af3a2c8d9a0182f55524782d0173e8 Mon Sep 17 00:00:00 2001 From: psychocrypt Date: Wed, 31 Jul 2019 18:18:12 +0200 Subject: [PATCH] remove unsupported currencies - remove `turtlecoin`, `xcash` and `loki` All of this currencies forked to an unsupported POW algorithm. --- README.md | 3 --- xmrstak/jconf.cpp | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 9ffb0b9fc..f448d5fe5 100644 --- a/README.md +++ b/README.md @@ -52,16 +52,13 @@ Following coins can be mined using this miner: - [Graft](https://www.graft.network) - [Haven](https://havenprotocol.com) - [Lethean](https://lethean.io) -- [Loki](https://loki.network/) - [Masari](https://getmasari.org) - [Monero](https://getmonero.org) - [Plenteum](https://www.plenteum.com/) - [QRL](https://theqrl.org) - **[Ryo](https://ryo-currency.com) - Upcoming xmr-stak-gui is sponsored by Ryo Currency** - [Torque](https://torque.cash/) -- [TurtleCoin](https://turtlecoin.lol) - [Zelerius](https://zelerius.org/) -- [X-CASH](https://x-network.io/) **[Ryo Currency](https://ryo-currency.com)** - is a way for us to implement the ideas that we were unable to in Monero. See [here](https://github.com/fireice-uk/cryptonote-speedup-demo/) for details. diff --git a/xmrstak/jconf.cpp b/xmrstak/jconf.cpp index 010f75407..bf76d34f3 100644 --- a/xmrstak/jconf.cpp +++ b/xmrstak/jconf.cpp @@ -132,10 +132,8 @@ xmrstak::coin_selection coins[] = { {"qrl", {POW(cryptonight_monero)}, {POW(cryptonight_gpu)}, nullptr}, {"ryo", {POW(cryptonight_gpu)}, {POW(cryptonight_gpu)}, "pool.ryo-currency.com:3333"}, {"torque", {POW(cryptonight_v8_half)}, {POW(cryptonight_gpu)}, nullptr}, - {"turtlecoin", {POW(cryptonight_turtle), 6u, POW(cryptonight_aeon)}, {POW(cryptonight_aeon)}, nullptr}, {"plenteum", {POW(cryptonight_turtle)}, {POW(cryptonight_turtle)}, nullptr}, - {"zelerius", {POW(cryptonight_v8_zelerius), 7, POW(cryptonight_monero_v8)}, {POW(cryptonight_gpu)}, nullptr}, - {"xcash", {POW(cryptonight_v8_double)}, {POW(cryptonight_gpu)}, nullptr}}; + {"zelerius", {POW(cryptonight_v8_zelerius), 7, POW(cryptonight_monero_v8)}, {POW(cryptonight_gpu)}, nullptr}}; constexpr size_t coin_algo_size = (sizeof(coins) / sizeof(coins[0]));