Post
Topic
Board Mining (Altcoins)
Re: [ANN][X11] X11/Darkcoin Gpu Miner 40% faster - FIXED: temps now show on windows
by
goodluck0319
on 23/05/2014, 23:39:37 UTC
Hey guys, now I know you guys don't want to run any random executables, however I have binary patched sgminer so it allows you to remove girino's pool

Link https://www.dropbox.com/s/fxs1fwxiu7l0aua/sgminera.exe

You can do a binary comparison and see I've only edited a few bytes(should be 4), there is no way I could've slipped anything malicious.

Why couldn't you remove his pool? Simple, he changed this code

Code:
if (selected < 0 || selected >= total_pools) {
wlogprint("Invalid selection\n");
goto retry;
}

to

Code:
if (selected == 0 || selected >= total_pools) {
wlogprint("Invalid selection\n");
goto retry;
}

your batch file already remove the pool or not.