tutulino / Megaminer

Multipool and multialgo windows miner
GNU General Public License v3.0
78 stars 69 forks source link

Rig name not passed to BlazePool #337

Closed Imaminer closed 6 years ago

Imaminer commented 6 years ago

My rig names never show up on Blaze. Just the miner name. image blaze2

1001rapid commented 6 years ago

I confirm and I found why if you look at the address http://api.blazepool.com/wallet/[your_wallet] you can see empty ID "miners":[{"version":"ccminer/alexis-1.1_palginmod","password":"c=btc,Id=F3x980Ti3","ID":""

Imaminer commented 6 years ago

Looking at Blazepool.ps1 I see this - $Result+=[PSCustomObject]@{

                                        Pass          = "c=btc,Id=#Workername#"

I wonder if it should be this - $Result+=[PSCustomObject]@{

                                        Pass          = "c=btc"
                                        ID             ="Id=#Workername#"

In other words pass the variable "ID" seperatly from the pass

Steality commented 6 years ago

I think it is the website problem, MM pass the value same with ahashpool yet ahashpool shows the rig name.

Steality commented 6 years ago

Sorry nothing wrong with the website, tested and worker name shown if using the order: Pass= "ID=#Workername#,c=btc"

tutulino commented 6 years ago

Changed, it will be available next code upload