Bitcoin Forum
May 30, 2024, 05:52:55 PM *
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] 14 »  All
  Print  
Author Topic: ANN CryptoPennies X11 PoW ended.  (Read 14769 times)
Bitr8er
Full Member
***
Offline Offline

Activity: 233
Merit: 100



View Profile
July 11, 2015, 01:39:52 AM
 #241

So, I guess we are now stuck with broke coin. Angry

Fixing it would be really, really simple though.

The code may be easy to fix. But the community would also have to get new seed nodes and convince Yobit to accept the hardfork. Or the dev could come back from his "2" day vacation...

What would setting up new seed nodes require?

I am sure yobit can delete the current blockchain and install a new wallet.
pineapples
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000


to your stations, man the pineapples!!!


View Profile
July 12, 2015, 11:08:17 AM
 #242

So, I guess we are now stuck with broke coin. Angry

Fixing it would be really, really simple though.


my earlier proposition
to make POS generate 10 blocks (or whatever) after every tx, to enable tx to go through.
would make diff retargeting sketchy .. and those 10 blocks would no doubt fly through in 5 seconds.

i'm very sad. because i think that would be an awesome idea when combined with zero reward pos Sad

i assume wurstgelee is for adding a minor reward to pos.


as far as yobit concerned surely if there was enough community voice given here. then yobit would accede to a community takeover.

--
seed nodes,
could just delete those in the code. and add some in yr
cryptopenis.conf


oh.
obv a name change to cryptopenis would also be a good idea.


//
maybe tweeting yobit would be useful.



YEEE F*#KIN HA BIG RED TEXT !!!           

(\__/)    
(='.'=)   
(")_(")   










     BUMBA
prospecta
Hero Member
*****
Offline Offline

Activity: 729
Merit: 500


View Profile
July 12, 2015, 08:58:42 PM
 #243

Lets take this coin over and then back with Urea.

After I am done with you, you will be banned from ever being on the internet again or even owning a PC
bones261
Legendary
*
Offline Offline

Activity: 1806
Merit: 1827



View Profile
July 12, 2015, 11:27:20 PM
 #244

Great, the network weight is so low now, the block chain is totally frozen. Sending a transaction won't even move it along. Just call the coin cryptoparalysis. Angry
Bitr8er
Full Member
***
Offline Offline

Activity: 233
Merit: 100



View Profile
July 14, 2015, 04:30:35 AM
 #245

The chain moved a block today, Woo Hoo!
raimch89
Legendary
*
Offline Offline

Activity: 1169
Merit: 1000


View Profile
July 21, 2015, 05:05:41 PM
 #246

can we expect some news?
bones261
Legendary
*
Offline Offline

Activity: 1806
Merit: 1827



View Profile
July 22, 2015, 12:16:21 AM
 #247

can we expect some news?

Unfortunately, it appears the dev has moved on. It appears there are not enough coins eligible to stake now to overcome the minimum difficulty, even with a transaction fee included.
prospecta
Hero Member
*****
Offline Offline

Activity: 729
Merit: 500


View Profile
July 22, 2015, 10:22:26 PM
 #248

I hope you got aboard a liferaft, this ships sunk.

After I am done with you, you will be banned from ever being on the internet again or even owning a PC
pineapples
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000


to your stations, man the pineapples!!!


View Profile
July 23, 2015, 03:49:16 AM
 #249

change main.cpp

https://bitbucket.org/CryptoPennies/cryptopennies/src/1ae5fd2e8317e458ca79b7af36b4120b37209472/src/main.cpp?at=master#cl-999

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 = 0;

    // hiPoS
   int64_t nHeight = pindexBest->nHeight;
   if (nHeight > 5000 && nHeight < 6000) {

       if (nHeight < 6000)
           nSubsidy = 0.01 * COIN;
   }
   else {
       nSubsidy = 0 * COIN;
   }

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}

to >>>>>

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 = 0;

    // hiPoS
   int64_t nHeight = pindexBest->nHeight;
   if (nHeight > 5000 && nHeight < 6000) {

       if (nHeight < 6000)
           nSubsidy = 0.01 * COIN;
   }
    else if(pindexBest->nHeight < 6210)
    {
        nSubsidy = 0 * COIN;
    }
   else {
       nSubsidy = 0.00001 * COIN;
   }

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}


seed node doesnt even seem up. but for neatness sake
change net.cpp
https://bitbucket.org/CryptoPennies/cryptopennies/src/1ae5fd2e8317e458ca79b7af36b4120b37209472/src/net.cpp?at=master#net.cpp-1111

Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"23.95.121.121", "23.95.121.121"},
};

to

Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"", ""},
};

and https://bitbucket.org/CryptoPennies/cryptopennies/src/1ae5fd2e8317e458ca79b7af36b4120b37209472/src/net.cpp?at=master#net.cpp-1176

Code:
unsigned int pnSeed[] =
{
    0xdf4bd379, 0x7934d29b, 0x26bc02ad, 0x7ab743ad, 0x0ab3a7bc,
    0x375ab5bc, 0xc90b1617, 0x5352fd17, 0x5efc6c18, 0xccdc7d18,
    0x443d9118, 0x84031b18, 0x347c1e18, 0x86512418, 0xfcfe9031,
    0xdb5eb936, 0xef8d2e3a, 0xcf51f23c, 0x18ab663e, 0x36e0df40,
    0xde48b641, 0xad3e4e41, 0xd0f32b44, 0x09733b44, 0x6a51f545,
    0xe593ef48, 0xc5f5ef48, 0x96f4f148, 0xd354d34a, 0x36206f4c,
    0xceefe953, 0x50468c55, 0x89d38d55, 0x65e61a5a, 0x16b1b95d,
    0x702b135e, 0x0f57245e, 0xdaab5f5f, 0xba15ef63,
};

to
(do we need a comma in there ??)

Code:
unsigned int pnSeed[] =
{

};



compile it.
distribute to current users >> wont need to change yr data dir at all.
let yobit know.
bobs yr uncle.


this is a pissy little pos reward hopefully in line with the pissy idea of pennies.

..
lol quick google search gives those hex seeds being in cryptcoin, gridcoin, and opalcoin



YEEE F*#KIN HA BIG RED TEXT !!!           

(\__/)    
(='.'=)   
(")_(")   










     BUMBA
Bitr8er
Full Member
***
Offline Offline

Activity: 233
Merit: 100



View Profile
August 08, 2015, 02:49:37 AM
 #250

Dead or Alive?
bones261
Legendary
*
Offline Offline

Activity: 1806
Merit: 1827



View Profile
August 08, 2015, 02:52:27 AM
 #251

Dead or Alive?

Blockchain frozen. Dead as a doornail.
CapnBDL
Hero Member
*****
Offline Offline

Activity: 1064
Merit: 500


MOBU


View Profile WWW
August 12, 2015, 04:39:50 PM
 #252

NO CryptoPennies network!! DOA

           ▄██▄
████▄    ▄██████▄    ▄████
██████▄ ▀████████▀ ▄██████
▐███████▄ ▀████▀ ▄███████▌
▐█████████▄ ▀▀ ▄█████████▌
 ████ ▀█████▄▄█████▀ ████
 ████ ▄ ▀████████▀ ▄ ████
 ▐███ ██▄ ▀████▀ ▄██ ███▌
 ▐███ ████▄ ▀▀ ▄████ ███▌
  ███ ██████▄▄██████ ███
  ███ ██████████████ ███
  ▐██ ██████████████ ██▌
  ▐██ ██████████████ ██▌
   ██ ██████████████ ██
       ▀██████████▀
         ▀██████▀
           ▀██▀
.M O B U.███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
   The Investment Bank of the Future  
The Security Token Protocol and Licensed Security Token Exchange
█▀




█▄
Facebook Medium
Whitepaper ANN
LinkedIn    Reddit
▀█




▄█

         ▄▄▄█████▄▄▄
      ▄███████████████▄
    ▄███████████████████▄
   ███████████████████████
  ████ ▀███████▀    ▀██████
 █████▌  ▀▀███        ▄█████
▐██████▄             ▐██████▌
▐█████▄               ██████▌
▐███████▄            ███████▌
 ███████▄          ▄████████
  ████████       ▄█████████
   █████▀   ▄▄▄███████████
    ▀███████████████████▀
      ▀███████████████▀
         ▀▀▀█████▀▀▀

         ▄▄▄█████▄▄▄
      ▄███████████████▄
    ▄███████████████████▄
   ███████████████████████
  █████▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█████
 █████     ▄▄          █████
▐█████     ████▄▄      █████▌
▐█████     ████████    █████▌
▐█████     ████▀▀      █████▌
 █████     ▀▀          █████
  █████▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█████
   ███████████████████████
    ▀███████████████████▀
      ▀███████████████▀
         ▀▀▀█████▀▀▀

         ▄▄▄█████▄▄▄
      ▄███████████████▄
    ▄███████████████████▄
   ███████████████████████
  ████████████████▀▀▀ ▐████
 ███████████▀▀▀  ▄█▀  ██████
▐█████▀▀▀      ▄█▀    ██████▌
▐███▄▄▄    ▄▄██▀     ███████▌
▐████████ ███▀       ███████▌
 ████████▌█          ███████
  ████████ ▄▄██▄    ███████
   ███████████████▄ ██████
    ▀███████████████████▀
      ▀███████████████▀
         ▀▀▀█████▀▀▀
Bitr8er
Full Member
***
Offline Offline

Activity: 233
Merit: 100



View Profile
August 13, 2015, 03:13:15 AM
 #253

Too bad, I have 100 CRPS stuck in my desktop wallet Tongue
pineapples
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000


to your stations, man the pineapples!!!


View Profile
August 13, 2015, 12:14:35 PM
 #254

Too bad, I have 100 CRPS stuck in my desktop wallet Tongue

omg stake them !!!

only you can save us obi-wan



YEEE F*#KIN HA BIG RED TEXT !!!           

(\__/)    
(='.'=)   
(")_(")   










     BUMBA
pineapples
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000


to your stations, man the pineapples!!!


View Profile
August 13, 2015, 01:29:28 PM
Last edit: August 14, 2015, 12:56:42 PM by pineapples
 #255

ha. i made two blocks !!
wiped out a send tx i had lurking unconfirmed and staked them instead :p

no idea if the explorer will catch up or not Cheesy


--
possibly a simpler solution would be to reduce min staking age.
again though yobit would need to get onboard ..

edit.

thought about it.
unless the chain moves regularly it does not seem particularly secure. the word is "trivial" when it comes to someone attempting a longer chain/double spend.




YEEE F*#KIN HA BIG RED TEXT !!!           

(\__/)    
(='.'=)   
(")_(")   










     BUMBA
Bitr8er
Full Member
***
Offline Offline

Activity: 233
Merit: 100



View Profile
August 18, 2015, 07:23:37 AM
 #256

Could we crowdfund paying a developer to fix this?
such as this one:
https://bitcointalk.org/index.php?topic=1154684.0
Bitr8er
Full Member
***
Offline Offline

Activity: 233
Merit: 100



View Profile
August 18, 2015, 07:28:13 AM
 #257

one solution would be to add an expensive pow protocol such as x13 to keep the chain moving.
and make the block reward piss ant small.
btccashacc
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000


View Profile
August 18, 2015, 07:30:24 AM
 #258

https://yobit.net/en/trade/CRPS/BTC
where buy support ? im not see it Huh
where are you dev ?
pineapples
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000


to your stations, man the pineapples!!!


View Profile
September 28, 2015, 02:32:20 PM
 #259

https://yobit.net/en/trade/CRPS/BTC
where buy support ? im not see it Huh
where are you dev ?

yeh dev. where are you?



YEEE F*#KIN HA BIG RED TEXT !!!           

(\__/)    
(='.'=)   
(")_(")   










     BUMBA
TomVelvetPaws
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


BTC=1GjeqWFLc4TBDg3bwdQk9ZWnEoNPCT9t6G


View Profile WWW
January 17, 2017, 07:19:07 PM
 #260

whats up with CRPS big sells on Yobits.Someone find working nodes?

  CRAVE Embrace the privacy movement    ◥
   Your Market. Your Blockchain Business. Your Profit.     ◥
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 »  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!