Post
Topic
Board Mining (Altcoins)
Re: [GUIDE] GridSeed 5-Chip USB & Blade Miner Support/Tuning
by
RowanX
on 24/05/2014, 00:36:43 UTC

Okay

How do you tell the JSON not to use a certian gridseed?

Probably something like this?

EXAMPLES.
Code1 would be json 1 in folder 1
Code:
{
"gc3355-detect" : true,
"gc3355-freq" : [
"8D9117765449:850:0", "8D9117765449:850:1", "8D9117765449:850:2", "8D9117765449:850:3", "8D9117765449:850:4"
],
"pools" : [
{
"url" : "stratum+tcp://us-east.multipool.us:7777",
"user" : "brandonb01.1",
"pass" : "x"
}
]
}

Code2 would be json 2 in folder 2
Code:
{
"gc3355-detect" : true,
"gc3355-freq" : [
"8D76576C5355:850:0", "8D76576C5355:850:1", "8D76576C5355:850:2", "8D76576C5355:850:3", "8D76576C5355:850:4"
],
"pools" : [
{
"url" : "stratum+tcp://doge.ghash.io:3333",
"user" : "user",
"pass" : "x"
}
]
}

Not sure if that would have the desired effect. If both instances are using auto detect, then I think they'll both try to run both gridseeds at the same time - even though you are only specifying the frequency for one specific device (the readme says a default of 600 is applied if nothing is specified). If you're going to run 2 instances you probably need to specify each device rather than use auto detect? Just an idea.