updated algo map, and fixed miner list

This commit is contained in:
2018-01-21 16:14:01 -08:00
parent d131698995
commit 055ab45efd
3 changed files with 10 additions and 23 deletions

View File

@@ -1,5 +1,5 @@
{ {
"bitcore": "", "bitcore": "Bitcore",
"blake2s": "Blake2S", "blake2s": "Blake2S",
"blakecoin": "Blakecoin", "blakecoin": "Blakecoin",
"c11": "C11", "c11": "C11",
@@ -13,22 +13,22 @@
"myr-gr": "Myriad-Groestl", "myr-gr": "Myriad-Groestl",
"neoscrypt": "NeoScrypt", "neoscrypt": "NeoScrypt",
"nist5": "NIST5", "nist5": "NIST5",
"phi": "", "phi": "Phi",
"polytimos": "", "polytimos": "Polytimos",
"quark": "Quark", "quark": "Quark",
"qubit": "Qubit", "qubit": "Qubit",
"scrypt": "Scrypt", "scrypt": "",
"sha256": "", "sha256": "",
"sib": "Sib", "sib": "Sib",
"skein": "Skein", "skein": "Skein",
"skunk": "", "skunk": "Skunk",
"timetravel": "", "timetravel": "Timetravel",
"tribus": "", "tribus": "Tribus",
"x11": "X11", "x11": "X11",
"x11evo": "", "x11evo": "X11evo",
"x13": "X13", "x13": "X13",
"x14": "X14", "x14": "X14",
"x17": "X17", "x17": "X17",
"xevan": "", "xevan": "XEvan",
"yescrypt": "" "yescrypt": ""
} }

View File

@@ -1,11 +1,3 @@
{
"user_name": "salfter",
"miner_name": "miner10",
"card_type": "nvidia",
"currency": "USD",
"pwrcost": 0.107,
"min_profit": 0.0,
"miners":
{ {
"Bitcore": "Bitcore":
{ {
@@ -211,4 +203,3 @@
"last_benchmark": "2018-01-21" "last_benchmark": "2018-01-21"
} }
} }
}

View File

@@ -90,7 +90,7 @@ for i in ["scrypt", "blakecoin", "blake2s", "decred", "x11", "quark", "qubit", "
data[i]["adjusted_estimate"]/=1000 data[i]["adjusted_estimate"]/=1000
except: except:
pass pass
coins={} coins={}
for i in data: for i in data:
if (algo_map[i]!=""): if (algo_map[i]!=""):
@@ -109,7 +109,3 @@ print("")
for i in coins: for i in coins:
print(i+": "+str(coins[i]["estimate"])) print(i+": "+str(coins[i]["estimate"]))
print("")
for i in coins:
print(i+": "+str(coins[i]["bin"]))