Post
Topic
Board Mining
Re: Spitting your miner hashing into multiple shares
by
BTC_Toronto
on 16/06/2014, 07:09:18 UTC
@jonnybravo0311

I am not sure if I am following correctly, but wouldn't Balance or Load Balance strategies in cgminer/bfgminer allow you to do this? Most of the pools allow you to use the pay address as username. So if you setup your S2 to user Load Balance strategy, then create a bunch of different pools in it with the same quotas and then get all of them to mine to the same URL but with different usernames, you will have a fairly even distribution of payouts between the different addresses. e.g.

Code:
"pools" : [
        {
                "quota" : "1;pool1:port1",
                "user" : "1PayAddress1",
                "pass" : "passa",
        },
        {
                "quota" : "1;pool1:port1",
                "user" : "1PayAddress2",
                "pass" : "passb",
        },
        {
                "quota" : "1;pool1:port1",
                "user" : "1PayAddress3",
                "pass" : "passc",
        },
        {
                "quota" : "1;pool1:port1",
                "user" : "1PayAddress4",
                "pass" : "passa",
        }
}

FM