Bitcoin Forum
May 26, 2024, 03:10:38 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 [9]  All
  Print  
Author Topic: Gascoin X11 | available for takeover | website: gascoin.info |  (Read 10593 times)
Wopin
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 08, 2015, 07:55:58 AM
 #161

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???
Black Mamba
Hero Member
*****
Offline Offline

Activity: 656
Merit: 500


Don't Trust Words


View Profile
February 08, 2015, 10:22:46 AM
 #162

A week old and already dead  Grin Grin
gilangIDR
Legendary
*
Offline Offline

Activity: 1526
Merit: 1001



View Profile
February 08, 2015, 10:35:28 AM
 #163

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
Gas (OP)
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
February 09, 2015, 10:19:51 AM
 #164

i am back as a ghost.
Wopin
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 09, 2015, 10:31:13 AM
 #165

i am back as a ghost.

what kind of ghost??   Cheesy
Gas (OP)
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
February 09, 2015, 06:29:33 PM
 #166

https://www.secureworldexpo.com/sites/secureworld/files/Ghost%20-%20Labeled%20for%20Reuse.png
altcoinrichguy
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
February 09, 2015, 06:43:42 PM
 #167

Not ghost. You´re dick.  Grin
gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
February 14, 2015, 10:33:09 PM
 #168

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
najzenmajsen
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500



View Profile
February 14, 2015, 11:16:12 PM
 #169

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 ?
anticlimax
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000


View Profile
February 14, 2015, 11:21:47 PM
 #170

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.

twitter @antiiclimax
Wopin
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 17, 2015, 12:12:00 PM
 #171

Anyone have the wallet sincronized?

Nodes to put in config??

Please help my wallet is not up to date.

Gas (OP)
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
February 17, 2015, 11:17:38 PM
 #172

"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",
Strugg
Legendary
*
Offline Offline

Activity: 882
Merit: 1000


NAV Coin [NAV]


View Profile
February 17, 2015, 11:20:46 PM
 #173

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.

NAV Coin [NAV] Community & PR Manager
Visit the Thread!
Gas (OP)
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
February 18, 2015, 12:50:00 PM
Last edit: October 20, 2015, 04:39:40 PM by Gas
 #174

deleted
Wopin
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 18, 2015, 06:22:54 PM
 #175

"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.
najzenmajsen
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500



View Profile
February 25, 2015, 06:02:29 PM
 #176

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.
Wopin
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
March 04, 2015, 09:40:35 AM
 #177

Nobody to takeover the coin??
dflame
Member
**
Offline Offline

Activity: 79
Merit: 10


View Profile
March 12, 2015, 02:08:27 AM
 #178

if you want, I give you 10000 gas coin, it's ok 4 you? Angry
Pages: « 1 2 3 4 5 6 7 8 [9]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!