Pages:
Author

Topic: Gascoin X11 | available for takeover | website: gascoin.info | (Read 10673 times)

member
Activity: 79
Merit: 10
if you want, I give you 10000 gas coin, it's ok 4 you? Angry
member
Activity: 112
Merit: 10
Nobody to takeover the coin??
hero member
Activity: 700
Merit: 500
I've never seen a coin crash and burn as fast as this one. Simply incredible !
just like gas , this coin wanted to prove how fast gas can just burn away , and that we should stay away from it and make the world a healthier place.
member
Activity: 112
Merit: 10
"46.165.208.140:17994",
"37.59.21.58:17994",
"195.34.100.2:17994",
"80.56.218.2:17994",
"95.81.199.232:17994",

Thankyou but is impossible. 30 blocks left.
Gas
newbie
Activity: 30
Merit: 0
legendary
Activity: 882
Merit: 1000
NAV Coin [NAV]
It's like this:
I have no fucking idea where all those staked or "mined" coins came from.
Must be some error in code, i searched but couldn't find anything.
That ruined my coin.
i am done here.
Gascoin is avaliable for takeover.
Sorry to all that lost some funds, including me.
cCex has nothing to do with it.
It's a great exchange.


Hahah, I loled so hard at this.
Beautiful.
Perfect.
Incredible.

SHIT.
Gas
newbie
Activity: 30
Merit: 0
"46.165.208.140:17994",
"37.59.21.58:17994",
"195.34.100.2:17994",
"80.56.218.2:17994",
"95.81.199.232:17994",
member
Activity: 112
Merit: 10
Anyone have the wallet sincronized?

Nodes to put in config??

Please help my wallet is not up to date.

legendary
Activity: 1050
Merit: 1000
Must be some error in code, i searched but couldn't find anything.



The stake reward appears to be 100000000 times too high.

https://github.com/gjhiggins/dreamcoin/blob/master/src/main.cpp#L1005 <- Dreamcoin
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;

vs:

https://github.com/gascrypto/Gascoin/blob/master/src/main.cpp#L1020 <- Gascoin
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365;

(Gascoin shares its code with Dreamcoin)

Dreamcoin
Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
    int64_t nRewardCoinYear;
    nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;
    int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n",
                 FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy + nFees;
}

Gascoin
Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
    int64_t nRewardCoinYear;
    nRewardCoinYear = COIN_YEAR_REWARD;
   int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365;
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n",
                 FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy;
}

where:

static const int64_t MAX_MINT_PROOF_OF_STAKE = 0.15 * COIN;   // 15% annual interest <- Dreamcoin
and
static const int64_t COIN_YEAR_REWARD = 20 * CENT; // 20% annual interest <- Gascoin

respectively.

For convenience here's the arithmetic, expressed in Python with an arbitrary value of 30 for nCoinAge:

Code:
>>> 30 * (0.15 * 100000000) / 365 / 100000000 # Dreamcoin 15%
0.012328767123287671
>>> 30 * (20 * 1000000) / 365 # Gascoin 20%
1643835.6164383562
>>> 30 * (0.20 * 100000000) / 365 / 100000000 # Dreamcoin if it were 20%
0.016438356164383564
>>> 1643835.6164383562 / 0.016438356164383564 # The difference as a ratio
99999999.99999999

Seems to explain the symptoms. Anyone concur?

Cheers

Graham


You got it.
hero member
Activity: 700
Merit: 500
HI,GasCoin Team,
I have added your coin to the newcoin list on  8btc forum:http://8btc.com/forum.php?mod=redirect&goto=findpost&ptid=13070&pid=87082&fromuid=7008
8btc is the most famous forum in China.
Also updated on My twitter: https://twitter.com/ForAllCoins   
did you miss the fact , that this coin is completly dead ?
legendary
Activity: 2254
Merit: 1290
Must be some error in code, i searched but couldn't find anything.



The stake reward appears to be 100000000 times too high.

https://github.com/gjhiggins/dreamcoin/blob/master/src/main.cpp#L1005 <- Dreamcoin
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;

vs:

https://github.com/gascrypto/Gascoin/blob/master/src/main.cpp#L1020 <- Gascoin
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365;

(Gascoin shares its code with Dreamcoin)

Dreamcoin
Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
    int64_t nRewardCoinYear;
    nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;
    int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n",
                 FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy + nFees;
}

Gascoin
Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
    int64_t nRewardCoinYear;
    nRewardCoinYear = COIN_YEAR_REWARD;
   int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365;
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n",
                 FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy;
}

where:

static const int64_t MAX_MINT_PROOF_OF_STAKE = 0.15 * COIN;   // 15% annual interest <- Dreamcoin
and
static const int64_t COIN_YEAR_REWARD = 20 * CENT; // 20% annual interest <- Gascoin

respectively.

For convenience here's the arithmetic, expressed in Python with an arbitrary value of 30 for nCoinAge:

Code:
>>> 30 * (0.15 * 100000000) / 365 / 100000000 # Dreamcoin 15%
0.012328767123287671
>>> 30 * (20 * 1000000) / 365 # Gascoin 20%
1643835.6164383562
>>> 30 * (0.20 * 100000000) / 365 / 100000000 # Dreamcoin if it were 20%
0.016438356164383564
>>> 1643835.6164383562 / 0.016438356164383564 # The difference as a ratio
99999999.99999999

Seems to explain the symptoms. Anyone concur?

Cheers

Graham
member
Activity: 98
Merit: 10
Not ghost. You´re dick.  Grin
member
Activity: 112
Merit: 10
i am back as a ghost.

what kind of ghost??   Cheesy
Gas
newbie
Activity: 30
Merit: 0
i am back as a ghost.
legendary
Activity: 1526
Merit: 1001
shit coin again  and i misguided again  Cheesy
it's life , if in the first planning he would deceive , I HOPE HE DEAD  and can't come back to the world as dev coin

 Cheesy
Quote
hero member
Activity: 656
Merit: 500
Don't Trust Words
A week old and already dead  Grin Grin
member
Activity: 112
Merit: 10
Dev dont answer PM's.

Just go!!! Dead coin

Dev is answering.


There are anyone who is taking the project and is working on it???
newbie
Activity: 59
Merit: 0
I've never seen a coin crash and burn as fast as this one. Simply incredible !
member
Activity: 112
Merit: 10
Dev dont answer PM's.

Just go!!! Dead coin
Pages:
Jump to: