Skip to content

TT-Miner 2024.3.2

Latest
Compare
Choose a tag to compare
@TrailingStop TrailingStop released this 11 Jul 07:05
· 2 commits to main since this release
b7a4990

What's new in TT version 2024.3.1

  • New: CPU-Algo XELIS (version 2) and related coin XEL
  • New: EPIC and any CPU algo is now joinable.
  • Fix: fixes a bug with the extranonce for spectre-pools

Sample command line for Xelis V2

TT-Miner -c XEL -P <XELIS_WALLET>.<WORKER_NAME>@<POOL>:<POOL_PORT>
to limit the number of used threads use the -t option:
TT-Miner -c XEL -P <XELIS_WALLET>.<WORKER_NAME>@<POOL>:<POOL_PORT> -t 14

Sample for EPIC and a second CPU algo

To use more than a single algo you need to make use of the TT separators. A separator is just a single or more capital letter. For each algo we need to define the devices we want to use (-d), the coin (-c) or algo (-a) and wallet/worker and pool information (-P). First we define the EPIC algo:

required information:

  • -d (device)
  • -c (coin)
  • -P (wallet/(worker/pool)

for EPIC we use 'EP' as selector - you can use whatever you like as long as it is a combination of capital letters. We want to use device 1. The is the resulting command line to mine EPIC only:

TT-Miner -dEP 1 -cEP EPIC -PEP <EPIC_WALLET>.<EPIC_WORKER>@<EPIC_SERVER>:<EPIC_PORT>

now we add a CPU algo - lets select SPR. Again we need -d, -c and -P. As the selector we choose 'SP' and out CPU device got the Id 5:

-dSP 5 -cSP SPR -PSP <SPR_WALLET>.<SPR_WORKER>@<SPR_SERVER>:<SPR_PORT>

append this to the existing command line for EPIC and we get:

TT-Miner -dEP 1 -cEP EPIC -PEP <EPIC_WALLET>.<EPIC_WORKER>@<EPIC_SERVER>:<EPIC_PORT> -dSP 5 -cSP SPR -PSP <SPR_WALLET>.<SPR_WORKER>@<SPR_SERVER>:<SPR_PORT>

TT will now mine SPR all the time and EPIC (ProgPoW) is active. If we now want TT to mine SPR only if EPIC is active we need to use the 'join' option. We want SPR to join EPIC. Using our selectors for Spectre and epic we get:

-jSP EP

meaning the Spectre algo joins the epic algo. Resulting in our final command line:

TT-Miner -dEP 1 -cEP EPIC -PEP <EPIC_WALLET>.<EPIC_WORKER>@<EPIC_SERVER>:<EPIC_PORT> -dSP 5 -cSP SPR -PSP <SPR_WALLET>.<SPR_WORKER>@<SPR_SERVER>:<SPR_PORT>b -jSP EP

Please keep in mind to insert you information for pool/wallet/worker and device ids!

Let me know if you have any questions or issues.