Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC Community Release free-easy-to-use Linux Nvidia Mining
by
Rumo
on 29/06/2019, 12:50:32 UTC
Hi Papampi

Thanks for mention me in your WTM Script ;-)

If someone like to mine BEAM with wtm switcher you should change the WTM_SWITCHER script from

Code:
# filter WTM coins by user selection only
for i in data:
    if data[i]["tag"] == "NICEHASH":
       data[i]["tag"] = "NICE_" + data[i]["algorithm"].upper()

for i in filter(lambda x: data[x]["tag"] not in includedCoins, data):
    data.pop(i)


to

Code:
# filter WTM coins by user selection only
for i in data:
    if data[i]["algorithm"] == "Equihash (150,5)":
       data[i]["algorithm"] = "BEAM"

    if data[i]["tag"] == "NICEHASH":
       data[i]["tag"] = "NICE_" + data[i]["algorithm"].upper()

for i in filter(lambda x: data[x]["tag"] not in includedCoins, data):
    data.pop(i)


Hope this helps