Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
fullzero
on 01/09/2017, 15:15:23 UTC
How would I go about deleting an algo from the SALFTER MPH switcher?  One of my cards just doesn't like keccak.

Open the mph_switcher in gedit and prepend a # to lines referencing keccak.

Looking at Scott's gitlab:

https://gitlab.com/salfter/mph_switch/blob/master/mph_switch.py

he has updated the mph switch to allow: manual override by specifying algo & coin on command line; use "list" to get options

https://gitlab.com/salfter/mph_switch/commit/8fa93d659b8a206ecb9091e84b1e9734efcbd997

I will add these changes in the next set of updates.

this is the relevant part:
Code:
else: # manual override
  if (sys.argv[2]!="list"):
    miner=miners[sys.argv[2]]
    coin=coins[sys.argv[3]]
  else: # list available miners & coins
    print("algos: ", end="")
    for i in miners:
      print(i+" ", end="")
    print("")
    print ("coins: ", end="")
    for i in coins:
      print(i+" ", end="")
    print("")
    sys.exit()