Suprnova's ZCash Pool zec.suprnova.cc

Ok changes made now how do i recompile to use the changes?

That’s okay, this domain is a redirect and should work fine

Have u made a worker on suprnova ?

Your password looks a bit comedy …x ?

Thats a bug in the miner, start the miner a few times and it will say “Worker authorized” after launch and then all is ok

presume you don’t have visual studio, so windows 7 - How can I compile a .NET project without having Visual Studio installed? - Super User

I am using visual studio. It also requires a t address and that is not something we use for Suprnova. I changed the address field to a user/password field but it is loading it into the config.txt before the server therefore getting an unauthorized worker error. I have never done any editing or building of a gui before so I’m trying to figure it out. How could I either get rid of the t-address field or get it to enter in the config file after the server address? I think that is the final thing I need to do.

hmm can you show me the config it writes before connecting ? i might just add that you get authorized by your coin/payout address instead of the workername…

Address=t1Sf4TGgx7UdbewZAU1MmSzAxyg45eCLLKJ
Server=stratum+tcp://zec.suprnova.cc:2142
GPUCommand=null
CompatibilityMode=False
GPUDevices=0
CUDAThreads=0
CUDABlocks=0
UseCPU=True
CPUThreads=8
ShowCMD=True

This is what it builds in the config file. I went ahead and put my address in because it will not work without something there.

send thru a screenshot of where you make the change and the unauth, not on a win rig at the moment

edit: you could hardcode it directly, but you’d have to rebuild whenever you change addrs which isn’t all that practical - line 68 ZCashMiningGui/Form1.Designer.vb at 730b5b55a318e31cffc4862e92408b021ff91caf · moisespr123/ZCashMiningGui · GitHub

what I’d prefer is a field for user/pass and it to be after the server address. It’s just compiling in the config file in the wrong order to work properly on suprnova

looks like the gui is slicing part of the t-addr also when compared against the shell. also why its parsing the values var along with the assign op is bizarre.

I just checked and the address field is not big enough to show the whole t address but it is all there.

looks like the server line is the culprit.
look at ZCashMiningGui/Form1.vb at 730b5b55a318e31cffc4862e92408b021ff91caf · moisespr123/ZCashMiningGui · GitHub line 201. ‘+tcp://’ isn’t present.
so for instance try replacing with stratum.zec.suprnova.cc:2142

I’ve already done that the only issue I’m having is the address is being looked at before server so its not recognizing a user

not in the conf you haven’t

you can see from the console put that the address is being looked at after the server, ala Connected!

This is what happens when the you add the steratum to it. I tried just doing what you suggested also using stratum.zec.suprnova.cc:2142 and I just get the same result.

EDIT: ok, only suggested seeing as vb file had stratum.foo.whatever hard coded.
seeing as the prompt puts the address var and assignment op, could you just try replacing config.conf ‘Address=’ line with just the t-addr and no ‘Address=’ or hardcode directly on line 104:

writer.WriteLine("Address=" & Address)

with:

writer.WriteLine("[T-ADDR HERE DON'T INCLUDE THE SQUARE BRACKETS]")

Ok, scrap all the above.
suprnova doesn’t accept t-addrs as valid worker names.
you have to setup a worker and pass on suprnova, and then pass the worker.rigwhatever as the username followed by password of worker.
This gui is not complete and is missing the actual worker and password fields which is required by suprnova to even function.