Pages:
Author

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

hero member
Activity: 742
Merit: 500
November 12, 2014, 03:02:57 AM


lol. The same story as always. You never grow tired of this shit, do you?
sr. member
Activity: 280
Merit: 250
November 04, 2014, 02:45:38 PM
no other dev take this ?

y the fuck would they? just saying  Grin
hero member
Activity: 798
Merit: 500
Sovryn - 300-500% APY on USDT Deposit
November 04, 2014, 02:38:09 PM
Well it's waste of a perfectly good name for a coin, what a pitty Smiley
hero member
Activity: 646
Merit: 500
no other dev take this ?
hero member
Activity: 656
Merit: 500
Don't Trust Words
r.i.p  Cry
newbie
Activity: 48
Merit: 0
hero member
Activity: 646
Merit: 500
this coin is  dead?
full member
Activity: 327
Merit: 100
Open and Transparent Science Powered By Blockchain
Anyone want to claim bounty to get this moving?? I have 12000 coins stuck in transit I will split them. (6000 each) for anyone who can get this going./staking.
sr. member
Activity: 241
Merit: 250
September 30, 2014, 08:27:23 PM
any exchange?

1st page, but you can't move the coins right now. Stuck blockchain
newbie
Activity: 23
Merit: 0
September 30, 2014, 08:15:21 PM
any exchange?
full member
Activity: 327
Merit: 100
Open and Transparent Science Powered By Blockchain
September 30, 2014, 08:05:02 PM
How about get it fixed?

you should be asking kassado feel free to join #rubycoin.org on irc. he is in channel but no guarantee he will ever respond
How about the person who claimed they were in charge and who paid the dev contact him to make sure it is fixed. (I did contact kassado and he said he was busy)
sr. member
Activity: 658
Merit: 257
★Bitvest.io★ Play Plinko or Invest!
September 30, 2014, 07:45:55 PM
How about get it fixed?

you should be asking kassado feel free to join #rubycoin.org on irc. he is in channel but no guarantee he will ever respond
full member
Activity: 327
Merit: 100
Open and Transparent Science Powered By Blockchain
September 30, 2014, 06:39:48 PM
How about get it fixed?
sr. member
Activity: 249
Merit: 250
September 30, 2014, 04:36:56 PM
For anyone mad at me, or people who don't trust me:

There is nothing I could've done about the blockchain stopping at 10,000 blocks. Rubycoin also had this problem today.
hero member
Activity: 656
Merit: 500
Don't Trust Words
September 30, 2014, 01:20:42 PM
Coins is dead!!

Cant even dump coins!

Sick  Huh
legendary
Activity: 2716
Merit: 1240
September 30, 2014, 12:05:21 PM
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.

what your referring to is actually a section of the code that is returned when you do rpccommand 'getmininginfo' it doesn't actually have anything to do with the mining of the coin and as such would not cause the coin to fail in signblock.

Correct
sr. member
Activity: 658
Merit: 257
★Bitvest.io★ Play Plinko or Invest!
September 30, 2014, 12:00:20 PM
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.

what your referring to is actually a section of the code that is returned when you do rpccommand 'getmininginfo' it doesn't actually have anything to do with the mining of the coin and as such would not cause the coin to fail in signblock.
legendary
Activity: 2716
Merit: 1240
September 30, 2014, 11:51:51 AM
Well the network is not moving at all. I have had a transfer stuck at 0 confirms for 24 hours. Cant even dump teh coins I have.

Thats correct, your wallet tries to "do POS" but it rejects the blocks itself creates - thats why the network is stalled.

Its exactly the same issue with Ruby btw..
full member
Activity: 327
Merit: 100
Open and Transparent Science Powered By Blockchain
September 30, 2014, 11:50:46 AM
Well the network is not moving at all. I have had a transfer stuck at 0 confirms for 24 hours. Cant even dump the coins I have.

(transaction ID: 69686b4495ceea43a24b4536e6000ce147e19adf5f9a8576ab673aa3672ab6f7)
legendary
Activity: 2716
Merit: 1240
September 30, 2014, 11:31:39 AM
if anyone can get the chain moving again I will off a bounty for it as this is just stupid at this point.

I've made some tests and for me it looks like it is mining (staking) but the blocks cannot be signed by the wallet - not sure why though, its not a very trivial solution as far as I see.

Someone with more time should look more closely.

Technical stuff:

SignBlock() fails with PoS blocks.
Pages:
Jump to: