Bitcoin Forum
July 12, 2024, 09:27:41 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 10 11 [12] 13 »  All
  Print  
Author Topic: [ANN] [CUM] [SCRYPT POW/POS] Cummingtonite  (Read 42091 times)
inspirone1
Full Member
***
Offline Offline

Activity: 327
Merit: 100


Open and Transparent Science Powered By Blockchain


View Profile
September 30, 2014, 04:29:29 PM
 #221

if anyone can get the chain moving again I will off a bounty for it as this is just stupid at this point.

ORVIUM          Open and Transparent Science Powered By Blockchain          ORVIUM
█      Whitepaper         Telegram         Twitter         Facebook         Reddit         Blog     
▇▆▅▃▃▃▃▃▃▃   Token Generation Event: Coming Soon   ▃▃▃▃▃▃▃▅▆▇
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
September 30, 2014, 04:31:39 PM
 #222

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.

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
inspirone1
Full Member
***
Offline Offline

Activity: 327
Merit: 100


Open and Transparent Science Powered By Blockchain


View Profile
September 30, 2014, 04:50:46 PM
 #223

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)

ORVIUM          Open and Transparent Science Powered By Blockchain          ORVIUM
█      Whitepaper         Telegram         Twitter         Facebook         Reddit         Blog     
▇▆▅▃▃▃▃▃▃▃   Token Generation Event: Coming Soon   ▃▃▃▃▃▃▃▅▆▇
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
September 30, 2014, 04:51:51 PM
 #224

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

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
argakiig
Sr. Member
****
Offline Offline

Activity: 658
Merit: 257


★Bitvest.io★ Play Plinko or Invest!


View Profile
September 30, 2014, 05:00:20 PM
 #225

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.



BIG WINNER!
[15.00000000 BTC]


▄████████████████████▄
██████████████████████
██████████▀▀██████████
█████████░░░░█████████
██████████▄▄██████████
███████▀▀████▀▀███████
██████░░░░██░░░░██████
███████▄▄████▄▄███████
████▀▀████▀▀████▀▀████
███░░░░██░░░░██░░░░███
████▄▄████▄▄████▄▄████
██████████████████████
▀████████████████████▀
▄████████████████████▄
██████████████████████
█████▀▀█▀▀▀▀▀▀██▀▀████
█████░░░░░░░░░░░░░▄███
█████░░░░░░░░░░░░▄████
█████░░▄███▄░░░░██████
█████▄▄███▀░░░░▄██████
█████████░░░░░░███████
████████░░░░░░░███████
███████░░░░░░░░███████
███████▄▄▄▄▄▄▄▄███████
██████████████████████
▀████████████████████▀
▄████████████████████▄
███████████████▀▀▀▀▀▀▀
███████████▀▀▄▄█░░░░░█
█████████▀░░█████░░░░█
███████▀░░░░░████▀░░░▀
██████░░░░░░░░▀▄▄█████
█████░▄░░░░░▄██████▀▀█
████░████▄░███████░░░░
███░█████░█████████░░█
███░░░▀█░██████████░░█
███░░░░░░████▀▀██▀░░░░
███░░░░░░███░░░░░░░░░░
▀██░▄▄▄▄░████▄▄██▄░░░░
▄████████████▀▀▀▀▀▀▀██▄
█████████████░█▀▀▀█░███
██████████▀▀░█▀░░░▀█░▀▀
███████▀░▄▄█░█░░░░░█░█▄
████▀░▄▄████░▀█░░░█▀░██
███░▄████▀▀░▄░▀█░█▀░▄░▀
█▀░███▀▀▀░░███░▀█▀░███░
▀░███▀░░░░░████▄░▄████░
░███▀░░░░░░░█████████░░
░███░░░░░░░░░███████░░░
███▀░██░░░░░░▀░▄▄▄░▀░░░
███░██████▄▄░▄█████▄░▄▄
▀██░████████░███████░█▀
▄████████████████████▄
████████▀▀░░░▀▀███████
███▀▀░░░░░▄▄▄░░░░▀▀▀██
██░▀▀▄▄░░░▀▀▀░░░▄▄▀▀██
██░▄▄░░▀▀▄▄░▄▄▀▀░░░░██
██░▀▀░░░░░░█░░░░░██░██
██░░░▄▄░░░░█░██░░░░░██
██░░░▀▀░░░░█░░░░░░░░██
██░░░░░▄▄░░█░░░░░██░██
██▄░░░░▀▀░░█░██░░░░░██
█████▄▄░░░░█░░░░▄▄████
█████████▄▄█▄▄████████
▀████████████████████▀




Rainbot
Daily Quests
Faucet
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
September 30, 2014, 05:05:21 PM
 #226

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

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
Black Mamba
Hero Member
*****
Offline Offline

Activity: 656
Merit: 500


Don't Trust Words


View Profile
September 30, 2014, 06:20:42 PM
 #227

Coins is dead!!

Cant even dump coins!

Sick  Huh
kitaco
Sr. Member
****
Offline Offline

Activity: 249
Merit: 250


View Profile
September 30, 2014, 09:36:56 PM
 #228

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.

@cryptokiely // Donate! - BTC: 1kie1ykRUjxpMH5fAqLWigdtbLCyrMK9k // VRC: VEriKiEfZ9CwVs6GVGLbuBdEJxR2F7CJLq
inspirone1
Full Member
***
Offline Offline

Activity: 327
Merit: 100


Open and Transparent Science Powered By Blockchain


View Profile
September 30, 2014, 11:39:48 PM
 #229

How about get it fixed?

ORVIUM          Open and Transparent Science Powered By Blockchain          ORVIUM
█      Whitepaper         Telegram         Twitter         Facebook         Reddit         Blog     
▇▆▅▃▃▃▃▃▃▃   Token Generation Event: Coming Soon   ▃▃▃▃▃▃▃▅▆▇
argakiig
Sr. Member
****
Offline Offline

Activity: 658
Merit: 257


★Bitvest.io★ Play Plinko or Invest!


View Profile
October 01, 2014, 12:45:55 AM
 #230

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



BIG WINNER!
[15.00000000 BTC]


▄████████████████████▄
██████████████████████
██████████▀▀██████████
█████████░░░░█████████
██████████▄▄██████████
███████▀▀████▀▀███████
██████░░░░██░░░░██████
███████▄▄████▄▄███████
████▀▀████▀▀████▀▀████
███░░░░██░░░░██░░░░███
████▄▄████▄▄████▄▄████
██████████████████████
▀████████████████████▀
▄████████████████████▄
██████████████████████
█████▀▀█▀▀▀▀▀▀██▀▀████
█████░░░░░░░░░░░░░▄███
█████░░░░░░░░░░░░▄████
█████░░▄███▄░░░░██████
█████▄▄███▀░░░░▄██████
█████████░░░░░░███████
████████░░░░░░░███████
███████░░░░░░░░███████
███████▄▄▄▄▄▄▄▄███████
██████████████████████
▀████████████████████▀
▄████████████████████▄
███████████████▀▀▀▀▀▀▀
███████████▀▀▄▄█░░░░░█
█████████▀░░█████░░░░█
███████▀░░░░░████▀░░░▀
██████░░░░░░░░▀▄▄█████
█████░▄░░░░░▄██████▀▀█
████░████▄░███████░░░░
███░█████░█████████░░█
███░░░▀█░██████████░░█
███░░░░░░████▀▀██▀░░░░
███░░░░░░███░░░░░░░░░░
▀██░▄▄▄▄░████▄▄██▄░░░░
▄████████████▀▀▀▀▀▀▀██▄
█████████████░█▀▀▀█░███
██████████▀▀░█▀░░░▀█░▀▀
███████▀░▄▄█░█░░░░░█░█▄
████▀░▄▄████░▀█░░░█▀░██
███░▄████▀▀░▄░▀█░█▀░▄░▀
█▀░███▀▀▀░░███░▀█▀░███░
▀░███▀░░░░░████▄░▄████░
░███▀░░░░░░░█████████░░
░███░░░░░░░░░███████░░░
███▀░██░░░░░░▀░▄▄▄░▀░░░
███░██████▄▄░▄█████▄░▄▄
▀██░████████░███████░█▀
▄████████████████████▄
████████▀▀░░░▀▀███████
███▀▀░░░░░▄▄▄░░░░▀▀▀██
██░▀▀▄▄░░░▀▀▀░░░▄▄▀▀██
██░▄▄░░▀▀▄▄░▄▄▀▀░░░░██
██░▀▀░░░░░░█░░░░░██░██
██░░░▄▄░░░░█░██░░░░░██
██░░░▀▀░░░░█░░░░░░░░██
██░░░░░▄▄░░█░░░░░██░██
██▄░░░░▀▀░░█░██░░░░░██
█████▄▄░░░░█░░░░▄▄████
█████████▄▄█▄▄████████
▀████████████████████▀




Rainbot
Daily Quests
Faucet
inspirone1
Full Member
***
Offline Offline

Activity: 327
Merit: 100


Open and Transparent Science Powered By Blockchain


View Profile
October 01, 2014, 01:05:02 AM
 #231

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)

ORVIUM          Open and Transparent Science Powered By Blockchain          ORVIUM
█      Whitepaper         Telegram         Twitter         Facebook         Reddit         Blog     
▇▆▅▃▃▃▃▃▃▃   Token Generation Event: Coming Soon   ▃▃▃▃▃▃▃▅▆▇
nukecookie
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
October 01, 2014, 01:15:21 AM
 #232

any exchange?
JCJr222
Sr. Member
****
Offline Offline

Activity: 241
Merit: 250


View Profile
October 01, 2014, 01:27:23 AM
 #233

any exchange?

1st page, but you can't move the coins right now. Stuck blockchain
inspirone1
Full Member
***
Offline Offline

Activity: 327
Merit: 100


Open and Transparent Science Powered By Blockchain


View Profile
October 01, 2014, 03:27:45 PM
 #234

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.

ORVIUM          Open and Transparent Science Powered By Blockchain          ORVIUM
█      Whitepaper         Telegram         Twitter         Facebook         Reddit         Blog     
▇▆▅▃▃▃▃▃▃▃   Token Generation Event: Coming Soon   ▃▃▃▃▃▃▃▅▆▇
adoalli
Hero Member
*****
Offline Offline

Activity: 646
Merit: 500



View Profile
October 08, 2014, 07:38:17 AM
 #235

this coin is  dead?

defcoin
Newbie
*
Offline Offline

Activity: 48
Merit: 0


View Profile
October 10, 2014, 08:18:46 PM
 #236

this coin is  dead?

Yes.
Black Mamba
Hero Member
*****
Offline Offline

Activity: 656
Merit: 500


Don't Trust Words


View Profile
October 16, 2014, 07:03:05 PM
 #237

r.i.p  Cry
adoalli
Hero Member
*****
Offline Offline

Activity: 646
Merit: 500



View Profile
October 19, 2014, 02:04:54 PM
 #238

no other dev take this ?

Altcoin Agent
Hero Member
*****
Offline Offline

Activity: 798
Merit: 500


Sovryn - 300-500% APY on USDT Deposit


View Profile
November 04, 2014, 07:38:09 PM
 #239

Well it's waste of a perfectly good name for a coin, what a pitty Smiley

.The DeFi for Bitcoin Platform.            ███   ███
           ███   ███
          ███   ███
         ███   ███
        ███   ███
       ███   ███
      ███   ███
     ███   ███
    ███   ███
   ███   ███
  ███   ███
 ███   ███
███   ███
▄  ▄██████████████████████▄  ▄
 ▀▄ ▀████████████████████▀ ▄▀
  ▀█ ▀████▀ ▄▄            █▀
   ▀█▄ ▀█ ████████████▀ ▄█▀
     ██▄ ▀▀▀▀▀▀▀▀▀███  ██
      ███      ▀█▄ ▀ ▄██
       ███▄ ▀█████ ▄███
        ████ ▀██▀ ▄███
         ▀███▄  ▄███▀
          ▀███▄ ▀██▀
            ████▄ ▀
             ████▀
              ▀█▀
SOVRYN███   ███
 ███   ███
  ███   ███
   ███   ███
    ███   ███
     ███   ███
      ███   ███
       ███   ███
        ███   ███
         ███   ███
          ███   ███
           ███   ███
            ███   ███
.300% APY on USDT Deposits.
████████████████████████████
████████████████████████████
████████████████████████████
████████▀▀▄██████▄▀▀████████
███████  ▀        ▀  ███████
██████                ██████
█████▌   ███    ███   ▐█████
█████▌   ▀▀▀    ▀▀▀   ▐█████
██████                ██████
███████▄  ▀██████▀  ▄███████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
█████████████████▀▀  ███████
█████████████▀▀      ███████
█████████▀▀   ▄▄     ███████
█████▀▀    ▄█▀▀     ████████
█████████ █▀        ████████
█████████ █ ▄███▄   ████████
██████████████████▄▄████████
████████████████████████████
████████████████████████████
████████████████████████████
cassius69
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
November 04, 2014, 07:45:38 PM
 #240

no other dev take this ?

y the fuck would they? just saying  Grin

Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 »  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!