From f98a824693cb95cf8080cb7bdb46faedf648bf98 Mon Sep 17 00:00:00 2001 From: fixthesky <34895738+fixthesky@users.noreply.github.com> Date: Thu, 28 Dec 2017 02:11:09 +0700 Subject: [PATCH] fix some typo There was some 'tiny typo' - alowing to premine 6M coins (is about 37% of all actual coins) to team wallet. This nice pull request fixes that sad mistake. :-D Please, approve. --- src/chainparams.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index e432c9b60..1cf5a561f 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -113,7 +113,7 @@ class CMainParams : public CChainParams { consensus.hardforkHeight = 501451; consensus.premineAddress = "18wFZB62chDhYdapBnVEXX4y9hUvWs8yRu"; - consensus.premineValue = 2000000 * COIN; + consensus.premineValue = 0; /** * The message start string is designed to be unlikely to occur in normal data. @@ -235,7 +235,7 @@ class CTestNetParams : public CChainParams { consensus.hardforkHeight = 1200000; consensus.premineAddress = "mh7CayYx3J8ofEU5zSZPqJJV65d8ijkJpm"; - consensus.premineValue = 2000000 * COIN; + consensus.premineValue = 0; pchBitcoinMessageStart[0] = 0x0b; pchBitcoinMessageStart[1] = 0x11; @@ -336,7 +336,7 @@ class CRegTestParams : public CChainParams { consensus.hardforkHeight = 1000; consensus.premineAddress = "ms17iABVQf7RQB8iaxeXPBkFdQQjCv7CmV"; - consensus.premineValue = 2000000 * COIN; + consensus.premineValue = 0; pchBitcoinMessageStart[0] = 0xfa; pchBitcoinMessageStart[1] = 0xbf;