Pages:
Author

Topic: [ANN] [CUM] [SCRYPT POW/POS] Cummingtonite - page 2. (Read 42168 times)

full member
Activity: 327
Merit: 100
Open and Transparent Science Powered By Blockchain
September 30, 2014, 11:29:29 AM
if anyone can get the chain moving again I will off a bounty for it as this is just stupid at this point.
legendary
Activity: 2716
Merit: 1240
September 30, 2014, 06:52:56 AM
The missing line has nothing todo with the staking issue.

I'm currently out of time but i'll give it a look later too..

When comparing Ruby with CUM its clear that it is the same codebase.
sr. member
Activity: 249
Merit: 250
September 30, 2014, 06:50:01 AM
...

Rubycoin is currently stuck too. I wouldn't take anything from that code.
Actually this line is there on almost any project as far as I can see but it has been removed (?) from the CUM project? Anyway, I am a JAVA coder and don't have sufficient knowledge on the BTC source code to make a judgement call.

Actually in my source I have

Code:
Value getmininginfo(const Array& params, bool fHelp)
{
    if (fHelp || params.size() != 0)
        throw runtime_error(
            "getmininginfo\n"
            "Returns an object containing mining-related information.");

    Object obj;
    obj.push_back(Pair("blocks",        (int)nBestHeight));
    obj.push_back(Pair("currentblocksize",(uint64_t)nLastBlockSize));
    obj.push_back(Pair("currentblocktx",(uint64_t)nLastBlockTx));
    obj.push_back(Pair("difficulty",    (double)GetDifficulty()));
    obj.push_back(Pair("errors",        GetWarnings("statusbar")));
    obj.push_back(Pair("generate",      GetBoolArg("-staking")));
    obj.push_back(Pair("genproclimit",  (int)GetArg("-genproclimit", 0)));
    obj.push_back(Pair("hashespersec",  gethashespersec(params, false)));
    obj.push_back(Pair("networkhashps", getnetworkhashps(params, false)));
    obj.push_back(Pair("pooledtx",      (uint64_t)mempool.size()));
    obj.push_back(Pair("testnet",       fTestNet));

    // ppcoin
    uint64 nAverageWeight = 0, nTotalWeight = 0;
    pwalletMain->GetStakeWeight(*pwalletMain, nAverageWeight, nTotalWeight);
    Object weight;
    weight.push_back(Pair("average", (uint64_t)nAverageWeight));
    weight.push_back(Pair("total",   (uint64_t)nTotalWeight));
    obj.push_back(Pair("stakeweight", weight));
    obj.push_back(Pair("stakeinterest",  (uint64_t)COIN_YEAR_REWARD));
    obj.push_back(Pair("netstakeweight", (uint64_t)GetPoSKernelPS()));
    return obj;
}

I also have:

Code:
// Cummingtonite PoS
static const int LAST_POW_BLOCK = 10000;
static const int64 COIN_YEAR_REWARD = 5 * CENT; // 5% per year
legendary
Activity: 1120
Merit: 1000
September 30, 2014, 06:40:54 AM
...

Rubycoin is currently stuck too. I wouldn't take anything from that code.
Actually this line is there on almost any project as far as I can see but it has been removed (?) from the CUM project? Anyway, I am a JAVA coder and don't have sufficient knowledge on the BTC source code to make a judgement call.
sr. member
Activity: 280
Merit: 250
September 30, 2014, 06:35:26 AM
You guys need to change the Symbol of the coin. Its going to blow on Twitter if the coin  goes live. CUM..... I mean come one?
sr. member
Activity: 249
Merit: 250
September 30, 2014, 06:35:20 AM
Not sure if this is the problem but I did notice this:


https://github.com/rubycoinorg/rubycoin/blob/master/src/rpcmining.cpp
Code:
Value getmininginfo(const Array& params, bool fHelp)
{
    if (fHelp || params.size() != 0)
        throw runtime_error(
            "getmininginfo\n"
            "Returns an object containing mining-related information.");

    Object obj;
    obj.push_back(Pair("blocks",        (int)nBestHeight));
    obj.push_back(Pair("currentblocksize",(uint64_t)nLastBlockSize));
    obj.push_back(Pair("currentblocktx",(uint64_t)nLastBlockTx));
    obj.push_back(Pair("difficulty",    (double)GetDifficulty()));
    obj.push_back(Pair("errors",        GetWarnings("statusbar")));
    obj.push_back(Pair("generate",      GetBoolArg("-staking")));
    obj.push_back(Pair("genproclimit",  (int)GetArg("-genproclimit", 0)));
    obj.push_back(Pair("hashespersec",  gethashespersec(params, false)));
    obj.push_back(Pair("networkhashps", getnetworkhashps(params, false)));
    obj.push_back(Pair("pooledtx",      (uint64_t)mempool.size()));
    obj.push_back(Pair("testnet",       fTestNet));

    // ppcoin
    uint64 nAverageWeight = 0, nTotalWeight = 0;
    pwalletMain->GetStakeWeight(*pwalletMain, nAverageWeight, nTotalWeight);
    Object weight;
    weight.push_back(Pair("average", (uint64_t)nAverageWeight));
    weight.push_back(Pair("total",   (uint64_t)nTotalWeight));
    obj.push_back(Pair("stakeweight", weight));
    obj.push_back(Pair("stakeinterest",  (uint64_t)COIN_YEAR_REWARD));
    obj.push_back(Pair("netstakeweight", (uint64_t)GetPoSKernelPS()));
    return obj;
}

https://github.com/cummingtonite/cummingtonite/blob/master/src/rpcmining.cpp
Code:
Value getmininginfo(const Array& params, bool fHelp)
{
    if (fHelp || params.size() != 0)
        throw runtime_error(
            "getmininginfo\n"
            "Returns an object containing mining-related information.");

    Object obj;
    obj.push_back(Pair("blocks",        (int)nBestHeight));
    obj.push_back(Pair("currentblocksize",(uint64_t)nLastBlockSize));
    obj.push_back(Pair("currentblocktx",(uint64_t)nLastBlockTx));
    obj.push_back(Pair("difficulty",    (double)GetDifficulty()));
    obj.push_back(Pair("errors",        GetWarnings("statusbar")));
    obj.push_back(Pair("generate",      GetBoolArg("-staking")));
    obj.push_back(Pair("genproclimit",  (int)GetArg("-genproclimit", 0)));
    obj.push_back(Pair("hashespersec",  gethashespersec(params, false)));
    obj.push_back(Pair("networkhashps", getnetworkhashps(params, false)));
    obj.push_back(Pair("pooledtx",      (uint64_t)mempool.size()));
    obj.push_back(Pair("testnet",       fTestNet));

    // ppcoin
    uint64 nAverageWeight = 0, nTotalWeight = 0;
    pwalletMain->GetStakeWeight(*pwalletMain, nAverageWeight, nTotalWeight);
    Object weight;
    weight.push_back(Pair("average", (uint64_t)nAverageWeight));
    weight.push_back(Pair("total",   (uint64_t)nTotalWeight));
    obj.push_back(Pair("stakeweight", weight));
    obj.push_back(Pair("netstakeweight", (uint64_t)GetPoSKernelPS()));
    return obj;
}

Missing line of code in the cummingtonite/blob/master/src/rpcmining.cpp file:
Code:
obj.push_back(Pair("stakeinterest",  (uint64_t)COIN_YEAR_REWARD));

Rubycoin is currently stuck too. I wouldn't take anything from that code.
sr. member
Activity: 249
Merit: 250
September 30, 2014, 06:32:51 AM
Again, did anyone of you ask this Kassado guy for the premine? If he abandoned the coin, which seems the case, we should consider reviving this ourselves. It has happened many times before with success. The only thing we need is an answer from this Kassado.

I answered above.

I would gladly help revive this if I had a full team behind me helping me. I don't know C++ and kassado abandoned it.

But why ?! Did you pay him for the code or the work ?

Why create a coin - wait until PoW is finished and abandon it ?? lol

He took the full 1.09% of the premine. He accumulated thousands more to dump after the premine.
legendary
Activity: 1120
Merit: 1000
September 30, 2014, 06:31:27 AM
Not sure if this is the problem but I did notice this:


https://github.com/rubycoinorg/rubycoin/blob/master/src/rpcmining.cpp
Code:
Value getmininginfo(const Array& params, bool fHelp)
{
    if (fHelp || params.size() != 0)
        throw runtime_error(
            "getmininginfo\n"
            "Returns an object containing mining-related information.");

    Object obj;
    obj.push_back(Pair("blocks",        (int)nBestHeight));
    obj.push_back(Pair("currentblocksize",(uint64_t)nLastBlockSize));
    obj.push_back(Pair("currentblocktx",(uint64_t)nLastBlockTx));
    obj.push_back(Pair("difficulty",    (double)GetDifficulty()));
    obj.push_back(Pair("errors",        GetWarnings("statusbar")));
    obj.push_back(Pair("generate",      GetBoolArg("-staking")));
    obj.push_back(Pair("genproclimit",  (int)GetArg("-genproclimit", 0)));
    obj.push_back(Pair("hashespersec",  gethashespersec(params, false)));
    obj.push_back(Pair("networkhashps", getnetworkhashps(params, false)));
    obj.push_back(Pair("pooledtx",      (uint64_t)mempool.size()));
    obj.push_back(Pair("testnet",       fTestNet));

    // ppcoin
    uint64 nAverageWeight = 0, nTotalWeight = 0;
    pwalletMain->GetStakeWeight(*pwalletMain, nAverageWeight, nTotalWeight);
    Object weight;
    weight.push_back(Pair("average", (uint64_t)nAverageWeight));
    weight.push_back(Pair("total",   (uint64_t)nTotalWeight));
    obj.push_back(Pair("stakeweight", weight));
    obj.push_back(Pair("stakeinterest",  (uint64_t)COIN_YEAR_REWARD));
    obj.push_back(Pair("netstakeweight", (uint64_t)GetPoSKernelPS()));
    return obj;
}

https://github.com/cummingtonite/cummingtonite/blob/master/src/rpcmining.cpp
Code:
Value getmininginfo(const Array& params, bool fHelp)
{
    if (fHelp || params.size() != 0)
        throw runtime_error(
            "getmininginfo\n"
            "Returns an object containing mining-related information.");

    Object obj;
    obj.push_back(Pair("blocks",        (int)nBestHeight));
    obj.push_back(Pair("currentblocksize",(uint64_t)nLastBlockSize));
    obj.push_back(Pair("currentblocktx",(uint64_t)nLastBlockTx));
    obj.push_back(Pair("difficulty",    (double)GetDifficulty()));
    obj.push_back(Pair("errors",        GetWarnings("statusbar")));
    obj.push_back(Pair("generate",      GetBoolArg("-staking")));
    obj.push_back(Pair("genproclimit",  (int)GetArg("-genproclimit", 0)));
    obj.push_back(Pair("hashespersec",  gethashespersec(params, false)));
    obj.push_back(Pair("networkhashps", getnetworkhashps(params, false)));
    obj.push_back(Pair("pooledtx",      (uint64_t)mempool.size()));
    obj.push_back(Pair("testnet",       fTestNet));

    // ppcoin
    uint64 nAverageWeight = 0, nTotalWeight = 0;
    pwalletMain->GetStakeWeight(*pwalletMain, nAverageWeight, nTotalWeight);
    Object weight;
    weight.push_back(Pair("average", (uint64_t)nAverageWeight));
    weight.push_back(Pair("total",   (uint64_t)nTotalWeight));
    obj.push_back(Pair("stakeweight", weight));
    obj.push_back(Pair("netstakeweight", (uint64_t)GetPoSKernelPS()));
    return obj;
}

Missing line of code in the cummingtonite/blob/master/src/rpcmining.cpp file:
Code:
obj.push_back(Pair("stakeinterest",  (uint64_t)COIN_YEAR_REWARD));
legendary
Activity: 2716
Merit: 1240
September 30, 2014, 06:27:23 AM
Again, did anyone of you ask this Kassado guy for the premine? If he abandoned the coin, which seems the case, we should consider reviving this ourselves. It has happened many times before with success. The only thing we need is an answer from this Kassado.

I answered above.

I would gladly help revive this if I had a full team behind me helping me. I don't know C++ and kassado abandoned it.

But why ?! Did you pay him for the code or the work ?

Why create a coin - wait until PoW is finished and abandon it ?? lol
sr. member
Activity: 249
Merit: 250
September 30, 2014, 06:18:20 AM
Again, did anyone of you ask this Kassado guy for the premine? If he abandoned the coin, which seems the case, we should consider reviving this ourselves. It has happened many times before with success. The only thing we need is an answer from this Kassado.

I answered above.

I would gladly help revive this if I had a full team behind me helping me. I don't know C++ and kassado abandoned it.
legendary
Activity: 1120
Merit: 1000
September 30, 2014, 06:10:11 AM
Again, did anyone of you ask this Kassado guy for the premine? If he abandoned the coin, which seems the case, we should consider reviving this ourselves. It has happened many times before with success. The only thing we need is an answer from this Kassado.
sr. member
Activity: 249
Merit: 250
September 30, 2014, 06:07:25 AM
Hmm I just had a short look over the code.. Its missing some basic PoS variables I know from other coins.. Do you know from which Coin this was forked ? Looks weird

Reddcoin. Earlz did the code review.
legendary
Activity: 2716
Merit: 1240
September 30, 2014, 06:04:06 AM
Hmm I just had a short look over the code.. Its missing some basic PoS variables I know from other coins.. Do you know from which Coin this was forked ? Looks weird
sr. member
Activity: 249
Merit: 250
September 30, 2014, 06:02:04 AM
May I ask why the Dev does not simply fix the staking issue ?

He probably just forked the coin from another Stake-Coin and forgot to tweak the LAST_POW_BLOCK value or something similar.. Can't be too hard.

Look at Rubycoin. It's stuck in block 124999 (the block right before PoS) and disabled on Bittrex. Do I spot a...coincidence?
legendary
Activity: 1120
Merit: 1000
September 30, 2014, 05:58:55 AM
May I ask why the Dev does not simply fix the staking issue ?

He probably just forked the coin from another Stake-Coin and forgot to tweak the LAST_POW_BLOCK value or something similar.. Can't be too hard.
The dev is not even responding. We might need to chase him up. Anyone has his BCT user ID? At least PM him and ask him for a response. If he is not working on this coin anymore he should put the premine in the dev fund and we can take-over this coin.
legendary
Activity: 2716
Merit: 1240
September 30, 2014, 05:54:32 AM
May I ask why the Dev does not simply fix the staking issue ?

He probably just forked the coin from another Stake-Coin and forgot to tweak the LAST_POW_BLOCK value or something similar.. Can't be too hard.
legendary
Activity: 1120
Merit: 1000
September 30, 2014, 05:49:14 AM
Congratulations Kiely!!! Cummingtonite will forever go down as the worst launch in crypto! You now hold a unique title that no other "dev" can claim. I want to commend you on behalf of this community for your failings. We hope you enjoy your duly earned and newly-attainted title.

I am curious, why are you pointing at kiely for all of this? Is she the developer of this coin? cause from my understanding it was developed by kassado? where is he in all of this?

Exactly. Thank you argakiig.

I did all I could do. I was put in a bad situation seemingly on purpose. I have even went as far as to paying people back BTC that they lost when buying CUM.

I now have .03 BTC in _all_ of my wallets, and 300 SDC. I am broke. This has absolutely destroyed me financially.
It is not about the fact that you too lost money on this. We all did. The problem I am having is that you openly stated that YOU own CUM and after the mess you denied this.

Quoting you here:
Quote
This coin is mine, but it has no affillation with Bittrex, and neither do I.

Quote
I have 0% premine and the code has been reviewed by earlz earlier in this thread. 1% went to the actual code developer - the backbone. I own the coin. PoD is irrelevant and unnecessary. Many people know who I am and trust me without no problems.

Despite all of this mess I wish you the best. Good luck with your loss. Hope that you will make up for it somehow Smiley No hard feelings here. Maybe just another lesson for both of us. Anything can happen in this market.
sr. member
Activity: 249
Merit: 250
September 30, 2014, 05:38:03 AM
Congratulations Kiely!!! Cummingtonite will forever go down as the worst launch in crypto! You now hold a unique title that no other "dev" can claim. I want to commend you on behalf of this community for your failings. We hope you enjoy your duly earned and newly-attainted title.

I am curious, why are you pointing at kiely for all of this? Is she the developer of this coin? cause from my understanding it was developed by kassado? where is he in all of this?

Exactly. Thank you argakiig.

I did all I could do. I was put in a bad situation seemingly on purpose. I have even went as far as to paying people back BTC that they lost when buying CUM.

I now have .03 BTC in _all_ of my wallets, and 300 SDC. I am broke. This has absolutely destroyed me financially.
hero member
Activity: 646
Merit: 500
September 29, 2014, 09:27:33 PM
no pos generate?  dead?
legendary
Activity: 1736
Merit: 1001
September 29, 2014, 08:44:14 PM
Congratulations Kiely!!! Cummingtonite will forever go down as the worst launch in crypto! You now hold a unique title that no other "dev" can claim. I want to commend you on behalf of this community for your failings. We hope you enjoy your duly earned and newly-attainted title.

I am curious, why are you pointing at kiely for all of this? Is she the developer of this coin? cause from my understanding it was developed by kassado? where is he in all of this?

I was also under the impression that Kassado was the dev for this coin.
Pages:
Jump to: