Author

Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency - page 6922. (Read 9723782 times)

full member
Activity: 280
Merit: 100
The Future Of Work
Thanks guys, I'll stop panicking, then  Grin
full member
Activity: 154
Merit: 100
Question:

If my pool hasn't updated yet, am I mining for nothing?  I have very little time left on my servers, and I really don't want to waste them.  So should I shut them down?

No the new code is only necessary when we hit a Diff of 75. We arent near that yet. So the pool admins do have time to update.
full member
Activity: 168
Merit: 100
Question:

If my pool hasn't updated yet, am I mining for nothing?  I have very little time left on my servers, and I really don't want to waste them.  So should I shut them down?

Not sure, but this is probably the best use of them ... Shut them down when the GPUs come in and actually raise the diff.

Alas that I've finally figured out how to compile on linux and can bring my server cpus online just at the end of the era of cpu mining Smiley
full member
Activity: 280
Merit: 100
The Future Of Work
Question:

If my pool hasn't updated yet, am I mining for nothing?  I have very little time left on my servers, and I really don't want to waste them.  So should I shut them down?
hero member
Activity: 784
Merit: 1005
Just my 2c, but forking this coin to change difficulty calculations is basically market manipulation, and if the DarkCoin devs are doing this regularly I think it'll reduce confidence in the coin. Part of the advantage of open-source currencies is that major features like difficulty calculations are public & open, and presumed constant. If major changes like this are made which affect the community & the market, I feel it's better if it's put to the community as a vote.

This isn't to diminish the efforts or intentions of the devs, who I think are doing an excellent job in most respects.

Generally agree, but it's the GPUs that change the situation/market from the original intent, so adjusting to that is actually diminishing the GPU-manipulated change.  Wink

Exactly, I would normally agree, and in fact I didn't like the first fork to update precisely the reward, but this update makes sense, and we probably agree that the coin is still in development stage, once the coin is mature the dev should only take care of bug fixing.

This update doesn't affect much the coin as we see it currently, it extends the variable reward that characterizes this coin beyond diff = 75. In fact, checking the 1st post, it wasn't specified the minimum reward of the coin, most people assumed it was 1, dev thought of setting it at 15 but in reality the code had it already at 25, so it was sort of a pending to fix subject rather than a modification.
hero member
Activity: 966
Merit: 1003
Just my 2c, but forking this coin to change difficulty calculations is basically market manipulation, and if the DarkCoin devs are doing this regularly I think it'll reduce confidence in the coin. Part of the advantage of open-source currencies is that major features like difficulty calculations are public & open, and presumed constant. If major changes like this are made which affect the community & the market, I feel it's better if it's put to the community as a vote.

This isn't to diminish the efforts or intentions of the devs, who I think are doing an excellent job in most respects.

Generally agree, but it's the GPUs that change the situation/market from the original intent, so adjusting to that is actually diminishing the GPU-manipulated change.  Wink
full member
Activity: 280
Merit: 100
The Future Of Work
Downloading isn't working?  At least not for me??
full member
Activity: 280
Merit: 100
The Future Of Work
Coinwarz says it's around 605? or something?   Given the volatility of these things, it doesn't sound too bad?  A few days ago it went under 550.  or???

Woopie!  I just bought my first bitcoins! I spent $40 for 0.07 BTC!  I'm a big spender!

but my BTC won't show up for a whole week Sad

Did you buy it through coinbase?

She barked down the long hallway to her PA, who got straight on the phone to her broker.
I hope she dosn't get cigar ash on the keyboard.

OMG, so funny!!  LOL  Cheesy
full member
Activity: 280
Merit: 100
The Future Of Work
Coinwarz says it's around 605? or something?   Given the volatility of these things, it doesn't sound too bad?  A few days ago it went under 550.  or???

Woopie!  I just bought my first bitcoins! I spent $40 for 0.07 BTC!  I'm a big spender!

but my BTC won't show up for a whole week Sad

Did you buy it through coinbase?

Yup, hope my account is safe (shivers) but I figure since I have no money in it, they can't steal much, LOL
legendary
Activity: 1176
Merit: 1036
Dash Developer
Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http://darkcoin.io/downloads/darkcoin-qt.exe
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!
How do you determine if it is a GPU?

Assuming same as last time, pools will update and Mac users just need to wait for Mac wallet?


The GPUs are basically six times faster, so when our difficulty starts moving that's how the algorithm knows.

I inquired about the mac wallet, I'll post it when it's updated.
So basically once the difficulty goes above 75, CPU mining is dead.

Yeah, that tends to happen when GPUs come in.
legendary
Activity: 1176
Merit: 1134
Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http://darkcoin.io/downloads/darkcoin-qt.exe
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!
How do you determine if it is a GPU?

Assuming same as last time, pools will update and Mac users just need to wait for Mac wallet?


The GPUs are basically six times faster, so when our difficulty starts moving that's how the algorithm knows.

I inquired about the mac wallet, I'll post it when it's updated.
So basically once the difficulty goes above 75, CPU mining is dead.
legendary
Activity: 1176
Merit: 1036
Dash Developer
Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http://darkcoin.io/downloads/darkcoin-qt.exe
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!
How do you determine if it is a GPU?

Assuming same as last time, pools will update and Mac users just need to wait for Mac wallet?


The GPUs are basically six times faster, so when our difficulty starts moving that's how the algorithm knows.

I inquired about the mac wallet, I'll post it when it's updated.
legendary
Activity: 1176
Merit: 1134
Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http://darkcoin.io/downloads/darkcoin-qt.exe
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!
How do you determine if it is a GPU?

Assuming same as last time, pools will update and Mac users just need to wait for Mac wallet?
sr. member
Activity: 1204
Merit: 272
1xbit.com
Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http[Suspicious link removed]
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!

Just my 2c, but forking this coin to change difficulty calculations is basically market manipulation, and if the DarkCoin devs are doing this regularly I think it'll reduce confidence in the coin. Part of the advantage of open-source currencies is that major features like difficulty calculations are public & open, and presumed constant. If major changes like this are made which affect the community & the market, I feel it's better if it's put to the community as a vote.

This isn't to diminish the efforts or intentions of the devs, who I think are doing an excellent job in most respects.
legendary
Activity: 1176
Merit: 1036
Dash Developer
Great !!!!!!!!!!!!

Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http[Suspicious link removed]
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!

Which block will the change take effect on?

It takes effect when we hit 75 difficulty, so whenever the GPU miner comes out

Does the block reward calc re-adjust to moores if diff drops below 75?

Once we move to GPUs we'll never be below a diff of 75 again, but if we do fall below that for some reason it will use the old equation which is fine.
sr. member
Activity: 280
Merit: 250
Who cares?
Great !!!!!!!!!!!!

Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http[Suspicious link removed]
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!

Which block will the change take effect on?

It takes effect when we hit 75 difficulty, so whenever the GPU miner comes out

Does the block reward calc re-adjust to moores if diff drops below 75?
legendary
Activity: 1176
Merit: 1036
Dash Developer
Great !!!!!!!!!!!!

Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http[Suspicious link removed]
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!

Which block will the change take effect on?

It takes effect when we hit 75 difficulty, so whenever the GPU miner comes out
newbie
Activity: 42
Merit: 0
Great !!!!!!!!!!!!

Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http[Suspicious link removed]
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!

Which block will the change take effect on?
legendary
Activity: 1176
Merit: 1036
Dash Developer
Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http://darkcoin.io/downloads/darkcoin-qt.exe
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!

If your update is going to involve a fork, I think you should leave a message in the first post of this thread too.


Done
newbie
Activity: 45
Merit: 0
Being that the GPU's are joining the game we wanted to redefine the difficulty/reward curve to be the same as it was in the prior phase of mining. This involves a fork to apply a new rewards curve to above a difficulty of 75, and scales at a rate similar to the growth rate seen in other GPU coins.

The new formula for GPUs is 2222222/(((x+2600)/9)^2) with a block reward max of 25 and a minimum of 5. This will provide a very interesting incentive for GPUs to jump on earlier while the rewards are high, and it will ensure that the CPU miners coins remain valuable for the foreseeable future, while making this coin a more scarce and a limited resource.

Code:
if(nHeight >= 17000 && dDiff > 75) { // 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;
        }


Anyone using a windows wallet should update: http://darkcoin.io/downloads/darkcoin-qt.exe
To recompile from source, download from here: https://github.com/evan82/darkcoin

Thanks

PS.  thanks to Kaene for helping out with the new formula!

If your update is going to involve a fork, I think you should leave a message in the first post of this thread too.
Jump to: