hardroad
Full Member
Offline
Activity: 224
Merit: 100
█ If you want logo pm me █
|
|
June 26, 2014, 02:58:52 PM |
|
I cant start in Supernova Miner..... wait 30 seconds
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
June 26, 2014, 03:00:30 PM |
|
I cant start in Supernova Miner..... wait 30 seconds paste me your connection string, i've got other mining without problems at the moment
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
Youghoor
|
|
June 26, 2014, 03:00:53 PM |
|
I cant start in Supernova Miner..... wait 30 seconds it depends on the stratum server you choose try changing the stratum.
|
|
|
|
ajeef
|
|
June 26, 2014, 03:05:35 PM |
|
i am so lucky only 8 nodes
|
|
|
|
JohnDorien
|
|
June 26, 2014, 03:08:44 PM |
|
i am so lucky only 8 nodes what's your hashpower??
|
|
|
|
pivce
Newbie
Offline
Activity: 32
Merit: 0
|
|
June 26, 2014, 03:12:39 PM |
|
when can we expect gpu miner?
|
|
|
|
wyj1888
|
|
June 26, 2014, 03:20:01 PM |
|
GPU miner?where?
|
|
|
|
TheCoinFinder
Legendary
Offline
Activity: 938
Merit: 1001
|
|
June 26, 2014, 03:20:49 PM |
|
Block 5465 coming soon... if(nHeight >= 5465) { if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc // 2222222/(((x+2600)/9)^2) nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0))); if (nSubsidy > 25) nSubsidy = 25; if (nSubsidy < 5) nSubsidy = 5; } else { // CPU mining calc nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0))); if (nSubsidy > 500) nSubsidy = 500; if (nSubsidy < 25) nSubsidy = 25; } } else { ...
|
|
|
|
BitBlock (OP)
Newbie
Offline
Activity: 14
Merit: 0
|
|
June 26, 2014, 03:22:44 PM |
|
Still working on implementing Whirlpool into the GPU miner guys. The other devs will be working on it, and will let you guys know on the forums, I have to take my wife to a Dr.'s apt. So one of the others will keep you guys posted if/when the gpu miner will be avail. See you later in the afternoon.
|
|
|
|
hardroad
Full Member
Offline
Activity: 224
Merit: 100
█ If you want logo pm me █
|
|
June 26, 2014, 03:24:46 PM |
|
I cant start in Supernova Miner..... wait 30 seconds paste me your connection string, i've got other mining without problems at the moment THX It works now I am waiting for accepted
|
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 26, 2014, 03:27:10 PM |
|
Block 5465 coming soon... if(nHeight >= 5465) { if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc // 2222222/(((x+2600)/9)^2) nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0))); if (nSubsidy > 25) nSubsidy = 25; if (nSubsidy < 5) nSubsidy = 5; } else { // CPU mining calc nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0))); if (nSubsidy > 500) nSubsidy = 500; if (nSubsidy < 25) nSubsidy = 25; } } else { ...
what does it mean exactly ?
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
TheCoinFinder
Legendary
Offline
Activity: 938
Merit: 1001
|
|
June 26, 2014, 03:30:32 PM |
|
what does it mean exactly ?
Difference calculations for Subsidy - ie Block reward. Although, based on code - subsidy seems to be set to expect GPUs After block 17000, not before that.
|
|
|
|
JohnDorien
|
|
June 26, 2014, 03:31:26 PM |
|
Block 5465 coming soon... if(nHeight >= 5465) { if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc // 2222222/(((x+2600)/9)^2) nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0))); if (nSubsidy > 25) nSubsidy = 25; if (nSubsidy < 5) nSubsidy = 5; } else { // CPU mining calc nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0))); if (nSubsidy > 500) nSubsidy = 500; if (nSubsidy < 25) nSubsidy = 25; } } else { ...
what does it mean exactly ? without details of the subsidy it basically means: If a gpu miner is out you would expect a high diff, thus bigger 75, and then the block reward is between 5 and 25 If the diff is below 75, the reward is between 25 and 500 eidt: Coinfinders addition, this kicks in at block 17000, which is kinda... curious
|
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 26, 2014, 03:32:41 PM |
|
what does it mean exactly ?
Difference calculations for Subsidy - ie Block reward. Although, based on code - subsidy seems to be set to expect GPUs After block 17000, not before that. wow, the algo must be really hard to code
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
JohnDorien
|
|
June 26, 2014, 03:35:03 PM |
|
what does it mean exactly ?
Difference calculations for Subsidy - ie Block reward. Although, based on code - subsidy seems to be set to expect GPUs After block 17000, not before that. wow, the algo must be really hard to code thats got nothing to do with the algo... its only the block reward calcs...
|
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 26, 2014, 03:38:20 PM |
|
what does it mean exactly ?
Difference calculations for Subsidy - ie Block reward. Although, based on code - subsidy seems to be set to expect GPUs After block 17000, not before that. wow, the algo must be really hard to code thats got nothing to do with the algo... its only the block reward calcs... I mean there is no expectation of gpu before block 17k, so assuming it is some sort of time indicator for how long it will take to code the algo, it must be very difficult. (so clearly 5k for that kind of hard work is pretty cheap)
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
rayday11
|
|
June 26, 2014, 03:52:36 PM |
|
what does it mean exactly ?
Difference calculations for Subsidy - ie Block reward. Although, based on code - subsidy seems to be set to expect GPUs After block 17000, not before that. wow, the algo must be really hard to code thats got nothing to do with the algo... its only the block reward calcs... I mean there is no expectation of gpu before block 17k, so assuming it is some sort of time indicator for how long it will take to code the algo, it must be very difficult. (so clearly 5k for that kind of hard work is pretty cheap) Or they are sitting on the GPU miner till block 17K
|
|
|
|
TheCoinFinder
Legendary
Offline
Activity: 938
Merit: 1001
|
|
June 26, 2014, 03:53:12 PM |
|
I mean there is no expectation of gpu before block 17k, so assuming it is some sort of time indicator for how long it will take to code the algo, it must be very difficult. (so clearly 5k for that kind of hard work is pretty cheap) Well, isn't it just copy and paste from Darkcoin? If so, then there was no estimation made for it. And presumably, this value should have been lowered, as GPUs will hit well before 17k it seems.
|
|
|
|
Andremoliv
Newbie
Offline
Activity: 55
Merit: 0
|
|
June 26, 2014, 04:04:25 PM |
|
Anyone have problems with Hashharder?
i'm only getting 38.1775 Kh/s but on the miner as 200KH/s + 108KH/s + 108 KH/s
XxaiDasoaC9pmu3BjtHQVcpqsctKnHUubq 47 0.032% 38.1775 Kh/s 2014-06-26 17:06:39
|
|
|
|
|
|