Bitcoin Forum
May 19, 2024, 02:57:59 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Placeholder
1
2

Pages: « 1 ... 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 [87] 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 ... 185 »
  Print  
Author Topic: [Donated $2k+ To Charity] Clean Water Coin: A Crypto Charity (Pure PoS)  (Read 195660 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
April 08, 2014, 02:41:57 AM
 #1721

Unfortunately most of the devs decided it was better to have a nap during the most crucial time of the coins existence. Maybe a plan can be made to get the coin back into proper hands and get the coding fixed. Until then, I think all mining and trading should be stopped immediately.
IntroVert
Full Member
***
Offline Offline

Activity: 265
Merit: 119


View Profile
April 08, 2014, 02:49:22 AM
 #1722

Unfortunately most of the devs decided it was better to have a nap during the most crucial time of the coins existence. Maybe a plan can be made to get the coin back into proper hands and get the coding fixed. Until then, I think all mining and trading should be stopped immediately.

I agree with this, however I question why they didn't go the stop mining and trading route once the error was discovered. Although the fork didn't work as expected at least the crazy coin generation was stopped. The team should take some time to review and test code now without the sword of coin issuance hanging over their heads. It is important to get this right. And TEST, please!!!
Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
April 08, 2014, 02:51:11 AM
Last edit: April 08, 2014, 03:08:09 AM by Xardas2014
 #1723

Yet another fork planned. Don't give up yet folks. ONE dev hasn't, so back him!

http://www.megafileupload.com/en/file/516628/cleanwatercoin-qt-8500fork-zip.html  <-------new wallet you will need before a fork at block 8500. Let's hope this one fixes all the issues Smiley
YouIsPeng
Full Member
***
Offline Offline

Activity: 175
Merit: 100


View Profile
April 08, 2014, 02:52:26 AM
 #1724

Unfortunately most of the devs decided it was better to have a nap during the most crucial time of the coins existence. Maybe a plan can be made to get the coin back into proper hands and get the coding fixed. Until then, I think all mining and trading should be stopped immediately.

I agree with this. Although the fork didn't work as expected at least the crazy coin generation was stopped. The team should take some time to review and test code now without the sword of coin issuance hanging over their heads. It is important to get this right. And TEST, please!!!

You would hope they would test the next fix, however a dev has just said in IRC:

[03:49] <cryptowest> i fixed it already
[03:49] <cryptowest> fork at 8500

...
voxelot
Sr. Member
****
Offline Offline

Activity: 265
Merit: 250


View Profile
April 08, 2014, 02:55:17 AM
 #1725

It seems the fork did not work as expected. Miners only earn TX fees now. Check https://water.suprnova.cc/index.php?page=statistics&action=blocks or the explorer at http://cleanwatercoin.altstrade.cc/chain/CleanWaterCoin


Out of main.cpp, the following is the relevant code:


static const int64 nMinSubsidy = 1 * COIN;
static const int CUTOFF_HEIGHT = 1000000000;   // Temp max height. May need to be forked based on varied reward system
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
    int64 nSubsidy = 150 * COIN;
    double coinDifficulty = (double)GetDifficulty();

    int64 rewardCalc = 1/(sqrt(coinDifficulty + 500));

 if (nHeight == 1)
    {
        nSubsidy = 10000000 * COIN; // first block is premine
    }
    else if (nHeight >1 && nHeight <= 55) // 55 blocks for confirmation of premine
        {
            nSubsidy = 1 * COIN;
        }
    else if (nHeight >55 && nHeight <= 7000)
        {
            nSubsidy = 1000 * COIN;
        }
    else if (nHeight >7000 && nHeight < 8000)
        {
            nSubsidy = (int64)((double)(20000 * sqrt(coinDifficulty + 500)) * COIN);
        }

 // fork here for proper block reward - 8000 per cleanwatercoin guys

    else if (nHeight >= 8000 && nHeight <= 250000)
     {
             nSubsidy = (int64)((double)(20000 * rewardCalc) * COIN);
     }

    else if (nHeight > 250000 && nHeight <= 500000)
        {
            nSubsidy = (int64)((double)(15000 * rewardCalc) * COIN);
        }
    else if (nHeight >500000)
        {
            nSubsidy = (int64)((double)(10000 * rewardCalc) * COIN);
        }
    else if (nHeight > CUTOFF_HEIGHT)
        {
            nSubsidy = 0;
        }


    return nSubsidy + nFees;
}

Note that rewardCalc is int64 type. Given that its calculation will always be less than 1/sqrt(500) < 0.05 it will be always rounded down to 0. So once it is used in a formula like nSubsidy = (int64)((double)(20000 * rewardCalc) * COIN) it will default to 0, and the nSubsidy would be 0 as well. You are practically now mining for TX fees from here till eternity. The fix? Change rewardCalc declaration to double (in the line bolded above).

Because it is obvious that THIS AGAIN HAS NOT BEEN TESTED, here is some help for that. Copy this code into a main(), envelope it with a for loop going from 1 to 500002 and then another loop from CUTOFF_HEIGHT - 2 to CUTOFF_HEIGHT + 2 and run it standalone while writing the block height and subsidy into a file. Shouldn't take you long to review the file and see if the code is working correctly.

Now where is that fork picture from earlier?  Wink


Everybody thank Introvert for finding the data type error so quickly and to cryptowest for being the only dev that hasn't quit.
IntroVert
Full Member
***
Offline Offline

Activity: 265
Merit: 119


View Profile
April 08, 2014, 02:58:38 AM
 #1726

It seems the fork did not work as expected. Miners only earn TX fees now. Check https://water.suprnova.cc/index.php?page=statistics&action=blocks or the explorer at http://cleanwatercoin.altstrade.cc/chain/CleanWaterCoin


Out of main.cpp, the following is the relevant code:


static const int64 nMinSubsidy = 1 * COIN;
static const int CUTOFF_HEIGHT = 1000000000;   // Temp max height. May need to be forked based on varied reward system
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
    int64 nSubsidy = 150 * COIN;
    double coinDifficulty = (double)GetDifficulty();

    int64 rewardCalc = 1/(sqrt(coinDifficulty + 500));

 if (nHeight == 1)
    {
        nSubsidy = 10000000 * COIN; // first block is premine
    }
    else if (nHeight >1 && nHeight <= 55) // 55 blocks for confirmation of premine
        {
            nSubsidy = 1 * COIN;
        }
    else if (nHeight >55 && nHeight <= 7000)
        {
            nSubsidy = 1000 * COIN;
        }
    else if (nHeight >7000 && nHeight < 8000)
        {
            nSubsidy = (int64)((double)(20000 * sqrt(coinDifficulty + 500)) * COIN);
        }

 // fork here for proper block reward - 8000 per cleanwatercoin guys

    else if (nHeight >= 8000 && nHeight <= 250000)
     {
             nSubsidy = (int64)((double)(20000 * rewardCalc) * COIN);
     }

    else if (nHeight > 250000 && nHeight <= 500000)
        {
            nSubsidy = (int64)((double)(15000 * rewardCalc) * COIN);
        }
    else if (nHeight >500000)
        {
            nSubsidy = (int64)((double)(10000 * rewardCalc) * COIN);
        }
    else if (nHeight > CUTOFF_HEIGHT)
        {
            nSubsidy = 0;
        }


    return nSubsidy + nFees;
}

Note that rewardCalc is int64 type. Given that its calculation will always be less than 1/sqrt(500) < 0.05 it will be always rounded down to 0. So once it is used in a formula like nSubsidy = (int64)((double)(20000 * rewardCalc) * COIN) it will default to 0, and the nSubsidy would be 0 as well. You are practically now mining for TX fees from here till eternity. The fix? Change rewardCalc declaration to double (in the line bolded above).

Because it is obvious that THIS AGAIN HAS NOT BEEN TESTED, here is some help for that. Copy this code into a main(), envelope it with a for loop going from 1 to 500002 and then another loop from CUTOFF_HEIGHT - 2 to CUTOFF_HEIGHT + 2 and run it standalone while writing the block height and subsidy into a file. Shouldn't take you long to review the file and see if the code is working correctly.

Now where is that fork picture from earlier?  Wink


Everybody thank Introvert for finding the data type error so quickly and to cryptowest for being the only dev that hasn't quit.

Thank you cryptowest, looking forward to the fix!
ficklepickle
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile WWW
April 08, 2014, 03:01:08 AM
 #1727

 Huh

Is we going to build wells on the moon or not‽

WALKEN-COIN
Sr. Member
****
Offline Offline

Activity: 269
Merit: 250


Parsec Frontiers Pre-Sale 24.01.2018


View Profile WWW
April 08, 2014, 03:03:15 AM
 #1728

It seems the fork did not work as expected. Miners only earn TX fees now. Check https://water.suprnova.cc/index.php?page=statistics&action=blocks or the explorer at http://cleanwatercoin.altstrade.cc/chain/CleanWaterCoin


Out of main.cpp, the following is the relevant code:


static const int64 nMinSubsidy = 1 * COIN;
static const int CUTOFF_HEIGHT = 1000000000;   // Temp max height. May need to be forked based on varied reward system
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
    int64 nSubsidy = 150 * COIN;
    double coinDifficulty = (double)GetDifficulty();

    int64 rewardCalc = 1/(sqrt(coinDifficulty + 500));

 if (nHeight == 1)
    {
        nSubsidy = 10000000 * COIN; // first block is premine
    }
    else if (nHeight >1 && nHeight <= 55) // 55 blocks for confirmation of premine
        {
            nSubsidy = 1 * COIN;
        }
    else if (nHeight >55 && nHeight <= 7000)
        {
            nSubsidy = 1000 * COIN;
        }
    else if (nHeight >7000 && nHeight < 8000)
        {
            nSubsidy = (int64)((double)(20000 * sqrt(coinDifficulty + 500)) * COIN);
        }

 // fork here for proper block reward - 8000 per cleanwatercoin guys

    else if (nHeight >= 8000 && nHeight <= 250000)
     {
             nSubsidy = (int64)((double)(20000 * rewardCalc) * COIN);
     }

    else if (nHeight > 250000 && nHeight <= 500000)
        {
            nSubsidy = (int64)((double)(15000 * rewardCalc) * COIN);
        }
    else if (nHeight >500000)
        {
            nSubsidy = (int64)((double)(10000 * rewardCalc) * COIN);
        }
    else if (nHeight > CUTOFF_HEIGHT)
        {
            nSubsidy = 0;
        }


    return nSubsidy + nFees;
}

Note that rewardCalc is int64 type. Given that its calculation will always be less than 1/sqrt(500) < 0.05 it will be always rounded down to 0. So once it is used in a formula like nSubsidy = (int64)((double)(20000 * rewardCalc) * COIN) it will default to 0, and the nSubsidy would be 0 as well. You are practically now mining for TX fees from here till eternity. The fix? Change rewardCalc declaration to double (in the line bolded above).

Because it is obvious that THIS AGAIN HAS NOT BEEN TESTED, here is some help for that. Copy this code into a main(), envelope it with a for loop going from 1 to 500002 and then another loop from CUTOFF_HEIGHT - 2 to CUTOFF_HEIGHT + 2 and run it standalone while writing the block height and subsidy into a file. Shouldn't take you long to review the file and see if the code is working correctly.

Now where is that fork picture from earlier?  Wink


Everybody thank Introvert for finding the data type error so quickly and to cryptowest for being the only dev that hasn't quit.

Thank you cryptowest, looking forward to the fix!

Thanks for picking up the slack you guys! Nice to see people rising to this challenge instead of just giving up. I wish I could code, I would be helping too if I could.

My father is a coder for aerospace companies, and when he codes, he suddenly disappears and doesn't come out for hours on end. There is a possibility one or more of the devs is doing this too. Not good for communication, but when they go in to zen mode, they get shit done (professional coders that is).

            ███
           ██▀██
          ██   ██
▄▄▄▄▄▄   ██     ██ ▄▄▄▄▄▄▄       ▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄    ▄▄▄▄▄
████████▄   ███    █████████▄   █████████  █████████▀  █████████
███   ▀██  █████   ███   ▀███  ████▀       ███        ███▀   ▀███
███   ▄█▀ ███▀███  ███   ▄███  ████▄▄▄     ███▄▄▄▄▄  ███       ▀
███████▀ ███   ███ ▀████████▀   ▀███████   ████████  ███
███▀▀▀  ███     ███ ▀█▀▀███     ▄   ▀▀███  ███       ███       ▄
███    ███       ███ ▀   ███   ███▄▄▄▄███  ███▄▄▄▄▄▄  ███▄   ▄███
███   ███ ▄█████▄ ███     ███  ▀███████▀   ██████████  █████████
                   ███                                   ▀▀▀▀▀
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄   ███  ▄▄▄▄       ▄▄▄     ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄       ▄▄▄▄▄▄▄▄
███████████████████▄ ███ ▀██████    ████    █████████████████  ██████████  █████████▄   █████████
███        ███    ▀█▄ ███    ▀███   █████   ███    ███    ███  ███         ███   ▀███  ████▀
███        ███    ▄██  ███     ███  ██████  ███    ███    ███  ███▄▄▄▄▄▄▄  ███   ▄███  ████▄▄▄
████████████████████▀ ▄ ███    ███  ███ ███ ███    ███    ███  ██████████  █████████▀   ▀███████
███▀▀▀▀▀▀▀▀███▀▀███   █▄ ███  ███   ███  ██████    ███    ███  ███         ███▀▀███     ▄   ▀▀███
███        ███   ███   █▄ ███ ▀█    ███   █████    ███    ███  ███▄▄▄▄▄▄▄  ███   ███   ███▄▄▄▄███
███        ███    ███   ▀  ▀█▀      ███    ████    ███    ███  ██████████  ███    ███  ▀███████▀

    ███
    ███
███ ███ ███
    ▀▀▀  ██
███████████
██  ▄▄▄
███ ███ ███
    ▀▀▀  ██
███████████
██  ▄▄▄
███ ███ ███
    ███
    ███

    ███
    ███
███ ███ ███
██  ▀▀▀
███████████
    ▄▄▄  ██
███ ███ ███
██  ▀▀▀
███████████
    ▄▄▄  ██
███ ███ ███
    ███
    ███
[]
██
██
██
██
██
██
██
██
██
██
██
██
Discord
Facebook
Twitter
Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
April 08, 2014, 03:10:43 AM
 #1729

http://www.megafileupload.com/en/file/516628/cleanwatercoin-qt-8500fork-zip.html  <------repeat from an edit I made, You will need this new wallet before the fork at block 8500. Hopefully it fixes all the issues.

HUGE thanks to Introvert, voxelot, and cryptowest for not giving up!
WALKEN-COIN
Sr. Member
****
Offline Offline

Activity: 269
Merit: 250


Parsec Frontiers Pre-Sale 24.01.2018


View Profile WWW
April 08, 2014, 03:12:46 AM
 #1730

http://www.megafileupload.com/en/file/516628/cleanwatercoin-qt-8500fork-zip.html  <------repeat from an edit I made, You will need this new wallet before the fork at block 8500. Hopefully it fixes all the issues.

HUGE thanks to Introvert, voxelot, and cryptowest for not giving up!

Cool! Thanks guys!

            ███
           ██▀██
          ██   ██
▄▄▄▄▄▄   ██     ██ ▄▄▄▄▄▄▄       ▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄    ▄▄▄▄▄
████████▄   ███    █████████▄   █████████  █████████▀  █████████
███   ▀██  █████   ███   ▀███  ████▀       ███        ███▀   ▀███
███   ▄█▀ ███▀███  ███   ▄███  ████▄▄▄     ███▄▄▄▄▄  ███       ▀
███████▀ ███   ███ ▀████████▀   ▀███████   ████████  ███
███▀▀▀  ███     ███ ▀█▀▀███     ▄   ▀▀███  ███       ███       ▄
███    ███       ███ ▀   ███   ███▄▄▄▄███  ███▄▄▄▄▄▄  ███▄   ▄███
███   ███ ▄█████▄ ███     ███  ▀███████▀   ██████████  █████████
                   ███                                   ▀▀▀▀▀
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄   ███  ▄▄▄▄       ▄▄▄     ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄       ▄▄▄▄▄▄▄▄
███████████████████▄ ███ ▀██████    ████    █████████████████  ██████████  █████████▄   █████████
███        ███    ▀█▄ ███    ▀███   █████   ███    ███    ███  ███         ███   ▀███  ████▀
███        ███    ▄██  ███     ███  ██████  ███    ███    ███  ███▄▄▄▄▄▄▄  ███   ▄███  ████▄▄▄
████████████████████▀ ▄ ███    ███  ███ ███ ███    ███    ███  ██████████  █████████▀   ▀███████
███▀▀▀▀▀▀▀▀███▀▀███   █▄ ███  ███   ███  ██████    ███    ███  ███         ███▀▀███     ▄   ▀▀███
███        ███   ███   █▄ ███ ▀█    ███   █████    ███    ███  ███▄▄▄▄▄▄▄  ███   ███   ███▄▄▄▄███
███        ███    ███   ▀  ▀█▀      ███    ████    ███    ███  ██████████  ███    ███  ▀███████▀

    ███
    ███
███ ███ ███
    ▀▀▀  ██
███████████
██  ▄▄▄
███ ███ ███
    ▀▀▀  ██
███████████
██  ▄▄▄
███ ███ ███
    ███
    ███

    ███
    ███
███ ███ ███
██  ▀▀▀
███████████
    ▄▄▄  ██
███ ███ ███
██  ▀▀▀
███████████
    ▄▄▄  ██
███ ███ ███
    ███
    ███
[]
██
██
██
██
██
██
██
██
██
██
██
██
Discord
Facebook
Twitter
Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
April 08, 2014, 03:15:04 AM
 #1731

BTW, if you are mining or can, please continue to do so. We have to make it to the fork to see if it works correctly.

AFAIK you will only be getting transaction fees until the fork. You won't be earning many coins but will be supporting the network while it tries to heal.
ibfragalot
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
April 08, 2014, 03:15:56 AM
 #1732

...suddenly disappears and doesn't come out for hours on end. There is a possibility one or more of the devs is doing this too. Not good for communication, but when they go in to zen mode, they get shit done (professional coders that is).

As a coder myself, yes, this is how it works. You need 110% of your concentration with the code, NOTHING else.

Good on you CryptoWest. Wishing you luck this fork goes as planned.

Water_kel
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
April 08, 2014, 03:17:48 AM
 #1733

Ha,
Good performance cryptowest.
The next fork after 8500 will be 9000?. Grin
Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
April 08, 2014, 03:22:15 AM
 #1734

Ha,
Good performance cryptowest.
The next fork after 8500 will be 9000?. Grin

<----------slaps Water_kel with a cold dead fish Tongue
IntroVert
Full Member
***
Offline Offline

Activity: 265
Merit: 119


View Profile
April 08, 2014, 03:22:50 AM
 #1735

Ha,
Good performance cryptowest.
The next fork after 8500 will be 9000?. Grin

Give cryptowest a break man, he is the one trying to make it right here.

Edit: BTW, I just realized you are the person that is supposed to help build up the Chinese community, so hopefully you are in contact with the team. If you are, could you please let them know that it would be nice of them to finally show up in this forum, which you remember is the place they announced the coin and charity and where they solicited funds for the PLC? Thank you!
Darbu
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
April 08, 2014, 03:33:09 AM
 #1736

http://www.megafileupload.com/en/file/516628/cleanwatercoin-qt-8500fork-zip.html  <------repeat from an edit I made, You will need this new wallet before the fork at block 8500. Hopefully it fixes all the issues.

HUGE thanks to Introvert, voxelot, and cryptowest for not giving up!
wallet worked fine synced up fine no issues . thanks
IntroVert
Full Member
***
Offline Offline

Activity: 265
Merit: 119


View Profile
April 08, 2014, 04:05:44 AM
 #1737

Miners and pool operators have taken over this coin.  The "devs" are nowhere to be found.  There must be a short term profit incentive in this last rush to pick up 425,000 coin block rewards.  I would imagine this coin is going to get dumped on harder than a not so clean water porta potty.

I've been thinking about this and Voxelot is absolutely right when he says that miners and pool operators have taken over control of this coin. If you are right (and I think you are) that a massive dump will start once this forking business gets straightened out, there is a chance for the dev team to take back control of the coin by buying it up on exchanges for mere satoshies. There should be enough dry powder from the PLC, and I think it is very reasonable to use a substantial part of it to buy up a sufficient amount of coins so they reestablish control. Once they do, the coin should be able to serve its initial mission and as the team would control most of WATER they should be able to guide the project in the originally envisioned direction.
WALKEN-COIN
Sr. Member
****
Offline Offline

Activity: 269
Merit: 250


Parsec Frontiers Pre-Sale 24.01.2018


View Profile WWW
April 08, 2014, 04:09:45 AM
 #1738

Miners and pool operators have taken over this coin.  The "devs" are nowhere to be found.  There must be a short term profit incentive in this last rush to pick up 425,000 coin block rewards.  I would imagine this coin is going to get dumped on harder than a not so clean water porta potty.

I've been thinking about this and Voxelot is absolutely right when he says that miners and pool operators have taken over control of this coin. If you are right (and I think you are) that a massive dump will start once this forking business gets straightened out, there is a chance for the dev team to take back control of the coin by buying it up on exchanges for mere satoshies. There should be enough dry powder from the PLC, and I think it is very reasonable to use a substantial part of it to buy up a sufficient amount of coins so they reestablish control. Once they do, the coin should be able to serve its initial mission and as the team would control most of WATER they should be able to guide the project in the originally envisioned direction.

Yep. And those coins they bought up? Can be used like an Airdrop (Auroracoin/Mazacoin) for a water project.

            ███
           ██▀██
          ██   ██
▄▄▄▄▄▄   ██     ██ ▄▄▄▄▄▄▄       ▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄    ▄▄▄▄▄
████████▄   ███    █████████▄   █████████  █████████▀  █████████
███   ▀██  █████   ███   ▀███  ████▀       ███        ███▀   ▀███
███   ▄█▀ ███▀███  ███   ▄███  ████▄▄▄     ███▄▄▄▄▄  ███       ▀
███████▀ ███   ███ ▀████████▀   ▀███████   ████████  ███
███▀▀▀  ███     ███ ▀█▀▀███     ▄   ▀▀███  ███       ███       ▄
███    ███       ███ ▀   ███   ███▄▄▄▄███  ███▄▄▄▄▄▄  ███▄   ▄███
███   ███ ▄█████▄ ███     ███  ▀███████▀   ██████████  █████████
                   ███                                   ▀▀▀▀▀
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄   ███  ▄▄▄▄       ▄▄▄     ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄       ▄▄▄▄▄▄▄▄
███████████████████▄ ███ ▀██████    ████    █████████████████  ██████████  █████████▄   █████████
███        ███    ▀█▄ ███    ▀███   █████   ███    ███    ███  ███         ███   ▀███  ████▀
███        ███    ▄██  ███     ███  ██████  ███    ███    ███  ███▄▄▄▄▄▄▄  ███   ▄███  ████▄▄▄
████████████████████▀ ▄ ███    ███  ███ ███ ███    ███    ███  ██████████  █████████▀   ▀███████
███▀▀▀▀▀▀▀▀███▀▀███   █▄ ███  ███   ███  ██████    ███    ███  ███         ███▀▀███     ▄   ▀▀███
███        ███   ███   █▄ ███ ▀█    ███   █████    ███    ███  ███▄▄▄▄▄▄▄  ███   ███   ███▄▄▄▄███
███        ███    ███   ▀  ▀█▀      ███    ████    ███    ███  ██████████  ███    ███  ▀███████▀

    ███
    ███
███ ███ ███
    ▀▀▀  ██
███████████
██  ▄▄▄
███ ███ ███
    ▀▀▀  ██
███████████
██  ▄▄▄
███ ███ ███
    ███
    ███

    ███
    ███
███ ███ ███
██  ▀▀▀
███████████
    ▄▄▄  ██
███ ███ ███
██  ▀▀▀
███████████
    ▄▄▄  ██
███ ███ ███
    ███
    ███
[]
██
██
██
██
██
██
██
██
██
██
██
██
Discord
Facebook
Twitter
louiseth1
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Bitfarms.io


View Profile WWW
April 08, 2014, 04:12:31 AM
 #1739

After all those strugles to get all the payouts out, and more wallet updates, this is officially screwed.

There has been many forks through the last 24 hours, some coins that were mined on the wrong fork got credited on the correct one. We updated the wallets over 7 times due to update pushes by the devs, this only screwed up more the numbers.

We pushed every payout we could, but now 37M coins won't confirm and we're out of coins. Thing is they were confirmed before the latest update. This is beyond repair.

http://Water.Suchpool.pw is now closed.

Bitfarms.io - Powering Blockchains with Sustainable Energy
voxelot
Sr. Member
****
Offline Offline

Activity: 265
Merit: 250


View Profile
April 08, 2014, 04:13:02 AM
 #1740

Miners and pool operators have taken over this coin.  The "devs" are nowhere to be found.  There must be a short term profit incentive in this last rush to pick up 425,000 coin block rewards.  I would imagine this coin is going to get dumped on harder than a not so clean water porta potty.

I've been thinking about this and Voxelot is absolutely right when he says that miners and pool operators have taken over control of this coin. If you are right (and I think you are) that a massive dump will start once this forking business gets straightened out, there is a chance for the dev team to take back control of the coin by buying it up on exchanges for mere satoshies. There should be enough dry powder from the PLC, and I think it is very reasonable to use a substantial part of it to buy up a sufficient amount of coins so they reestablish control. Once they do, the coin should be able to serve its initial mission and as the team would control most of WATER they should be able to guide the project in the originally envisioned direction.

I just did a test with your suggested loops and the outputFile looks good.  This new fork should fix the nSubsidy bugs.  While this has been a great blunder I hope that you guys can continue and do good work for charity.
Pages: « 1 ... 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 [87] 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 ... 185 »
  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!