Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
New genesis block and update version to 47
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptAxe committed Mar 12, 2024
1 parent 838d907 commit 06a729f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 46)
define(_CLIENT_VERSION_REVISION, 03)
define(_CLIENT_VERSION_MINOR, 47)
define(_CLIENT_VERSION_REVISION, 00)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2024)
Expand Down
20 changes: 10 additions & 10 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ class CMainParams : public CChainParams {
consensus.nMinimumChainWork = uint256S("0x00");

// By default assume that the signatures in ancestors of this block are valid.
consensus.defaultAssumeValid = uint256S("0x5f086e59a4e0896e3a2554a43f8aeeae0017f303185d1fbc4386e5045646def2");
consensus.defaultAssumeValid = uint256S("0x5c19daec5e73aa7c9707a7931237fce59e7b8f4c1ca35763ed1c3b9f8ba5d179");

consensus.MinimumHeight = 11;
consensus.MinimumHeight = 0;

/**
* The message start string is designed to be unlikely to occur in normal data.
Expand All @@ -112,11 +112,11 @@ class CMainParams : public CChainParams {
nDefaultPort = 8383;
nPruneAfterHeight = 100000;

genesis = CreateGenesisBlock(1703872240, 3, 0x207fffff, 1, 50 * COIN);
genesis = CreateGenesisBlock(1710278531, 10, 0x207fffff, 1, 50 * COIN);

consensus.hashGenesisBlock = genesis.GetHash();

assert(consensus.hashGenesisBlock == uint256S("0x74b3caf4709e53c488ab8f6324c1fd72ffcfba96193401a2b33c0f6b6bffcf7c"));
assert(consensus.hashGenesisBlock == uint256S("0x5c19daec5e73aa7c9707a7931237fce59e7b8f4c1ca35763ed1c3b9f8ba5d179"));
assert(genesis.hashMerkleRoot == uint256S("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"));

base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,0);
Expand All @@ -137,17 +137,17 @@ class CMainParams : public CChainParams {

checkpointData = {
{
{11, uint256S("7c43551f4784e3f788f27ecc5920eefb4331e6e6884c8419de570bd114c1e461")},
{425, uint256S("53e450ef3d039e725b3c88d6b85e3a1c06273bf0eef247a7b782d542f8cc3fe1")},
{82353, uint256S("5f086e59a4e0896e3a2554a43f8aeeae0017f303185d1fbc4386e5045646def2")},
//{11, uint256S("7c43551f4784e3f788f27ecc5920eefb4331e6e6884c8419de570bd114c1e461")},
//{425, uint256S("53e450ef3d039e725b3c88d6b85e3a1c06273bf0eef247a7b782d542f8cc3fe1")},
//{82353, uint256S("5f086e59a4e0896e3a2554a43f8aeeae0017f303185d1fbc4386e5045646def2")},

}
};

chainTxData = ChainTxData{
/* nTime */ 1708893194,
/* nTxCount */ 83644,
/* dTxRate */ 0.01673294786093678
/* nTime */ 1710278531,
/* nTxCount */ 1,
/* dTxRate */ 0.0

};
}
Expand Down

0 comments on commit 06a729f

Please sign in to comment.