Skip to content

It's a release!

Compare
Choose a tag to compare
@De-Crypted De-Crypted released this 05 Apr 18:08
· 75 commits to master since this release

BREAKING CHANGES - Do not use old config.json! Due to changes to GPU autodetection work_multiplier should be null and work_size should be 512 (you may explore different values if you want to try to optimize).

New Features

Multi-GPU Mining

By default miner will mine with first GPU it finds but you may specify one or more in config.json or commandline. When miner starts it will list all available GPU devices with their index numbers such as [0], [1], [2] etc.

If you want to run miner on GPUs 0 and 2 you may set in config.json
"device": "0,2"

Or on commandline
--gpu:device=0,2

Bamboo solo mining (dev fee 2%)

Miner now supports connection against bamboo node. First you need node address to connect against . Find one from http://ec2-34-218-176-84.us-west-2.compute.amazonaws.com/ or run your own. Change http: prefix to bamboo: and miner will know which connection profile to apply.

config.json
"url": "bamboo://127.0.0.3000"

commandline
--url=bamboo://127.0.0.1:3000

Other fixes

  • AMD support should be much better than before and manual configuration should not be needed.
  • Lower CPU usage on NVIDIA GPUs
  • Multiple fixes to status reporting, connection issues, GPU autodetection.