Skip to content

Commit

Permalink
Merge pull request #1469 from ZedPea/dev
Browse files Browse the repository at this point in the history
Add turtlecoin as a config option
  • Loading branch information
psychocrypt authored Apr 22, 2018
2 parents a69a9c8 + 2fc04ae commit 4c244d6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Besides [Monero](https://getmonero.org), following coins can be mined using this
- [Intense](https://intensecoin.com)
- [Karbo](https://karbo.io)
- [Sumokoin](https://www.sumokoin.org)
- [TurtleCoin](https://turtlecoin.lol)

If your prefered coin is not listed, you can chose one of the following algorithms:

Expand Down
3 changes: 2 additions & 1 deletion xmrstak/jconf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ xmrstak::coin_selection coins[] = {
{ "karbo", {cryptonight_monero, cryptonight, 255u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr },
{ "monero7", {cryptonight_monero, cryptonight_monero, 0u}, {cryptonight_monero, cryptonight_monero, 0u}, "pool.usxmrpool.com:3333" },
{ "stellite", {cryptonight_monero, cryptonight, 3u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr },
{ "sumokoin", {cryptonight_heavy, cryptonight_heavy, 0u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr }
{ "sumokoin", {cryptonight_heavy, cryptonight_heavy, 0u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr },
{ "turtlecoin", {cryptonight_lite, cryptonight_aeon, 255u}, {cryptonight_aeon, cryptonight_lite, 7u}, nullptr }
};

constexpr size_t coin_alogo_size = (sizeof(coins)/sizeof(coins[0]));
Expand Down
1 change: 1 addition & 0 deletions xmrstak/pools.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ POOLCONF],
* karbo
* monero7 (use this for Monero's new PoW)
* sumokoin (automatic switch with block version 3 to cryptonight_heavy)
* turtlecoin
*
* Native algorithms which not depends on any block versions:
*
Expand Down

0 comments on commit 4c244d6

Please sign in to comment.