Author

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

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.
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!

Have the pools already updated?

3 of 6 so far, we're missing smalltime, yobapool and lotterymining.
sr. member
Activity: 280
Merit: 250
Who cares?
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!

Have the pools already updated?
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!
legendary
Activity: 1176
Merit: 1134
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?

Why is there such a big price difference between coinbase and mtgox? mtgox is like in the low $400s.  

Because Gox is not letting anyone take BTC out. So people are selling for what ever they can get.

Is this a temporary thing?
yes, temporary until mtgox goes out of business. I just dont see them surviving long term, this is not the first time they really goofed up. Blaming bitcoin itself, when it was them not following recommended procedures. Now everybody feels the hurt
sr. member
Activity: 645
Merit: 250
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?

Why is there such a big price difference between coinbase and mtgox? mtgox is like in the low $400s.  

Because Gox is not letting anyone take BTC out. So people are selling for what ever they can get.

Is this a temporary thing?
full member
Activity: 154
Merit: 100
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?

Why is there such a big price difference between coinbase and mtgox? mtgox is like in the low $400s.  

Because Gox is not letting anyone take BTC out. So people are selling for what ever they can get.
sr. member
Activity: 645
Merit: 250
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?

Why is there such a big price difference between coinbase and mtgox? mtgox is like in the low $400s.  
hero member
Activity: 768
Merit: 1000
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.
Jump to: