Skip to content

Commit

Permalink
Update chain params and version to 46.03
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptAxe committed Jan 2, 2024
1 parent 47c40a5 commit 2c8ce94
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ 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, 02)
define(_CLIENT_VERSION_REVISION, 03)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2023)
define(_COPYRIGHT_YEAR, 2024)
define(_COPYRIGHT_HOLDERS,[The %s developers])
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Drivechain]])
AC_INIT([Drivechain],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/DrivechainTESTDRIVE/drivechain/issues],[mainchain],[http://drivechain.info/])
Expand Down
10 changes: 5 additions & 5 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,18 +98,18 @@ class CMainParams : public CChainParams {
// By default assume that the signatures in ancestors of this block are valid.
consensus.defaultAssumeValid = uint256S("0xda8cf4b929af5f6d24561fc1357b562813f705d2c73c337cd4667e5a3297b8b3");

consensus.MinimumHeight = 37178;
consensus.MinimumHeight = 11;

/**
* The message start string is designed to be unlikely to occur in normal data.
* The characters are rarely used upper ASCII, not valid as UTF-8, and produce
* a large 32-bit integer with any alignment.
*/
pchMessageStart[0] = 0xf9;
pchMessageStart[1] = 0xbe;
pchMessageStart[2] = 0xb4;
pchMessageStart[1] = 0xb4;
pchMessageStart[2] = 0xb3;
pchMessageStart[3] = 0xd9;
nDefaultPort = 8333;
nDefaultPort = 8383;
nPruneAfterHeight = 100000;

genesis = CreateGenesisBlock(1703872240, 3, 0x207fffff, 1, 50 * COIN);
Expand Down Expand Up @@ -137,7 +137,7 @@ class CMainParams : public CChainParams {

checkpointData = {
{
// {37178, uint256S("3722a1ebb37cbc2430f4fa18ba6ecedf3aa5047385cc9dd79f0c78429b729b08")},
{11, uint256S("7c43551f4784e3f788f27ecc5920eefb4331e6e6884c8419de570bd114c1e461")},
}
};

Expand Down

0 comments on commit 2c8ce94

Please sign in to comment.