diff --git a/divi/configure.ac b/divi/configure.ac index 0792c9cb8..5a92722c6 100644 --- a/divi/configure.ac +++ b/divi/configure.ac @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 1) define(_CLIENT_VERSION_MINOR, 1) -define(_CLIENT_VERSION_REVISION, 1) +define(_CLIENT_VERSION_REVISION, 2) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2017) diff --git a/divi/src/chainparams.cpp b/divi/src/chainparams.cpp index fb0ce1371..ca9679978 100755 --- a/divi/src/chainparams.cpp +++ b/divi/src/chainparams.cpp @@ -396,17 +396,18 @@ class CTestNetParams : public CMainParams nTreasuryPaymentsCycle = 201; //! Modify the testnet genesis block so the timestamp is valid for a later start. - genesis.nTime = 1537971708; - genesis.nNonce = 749845; + genesis.nTime = 1591798387; + genesis.nNonce = 2105601; nExtCoinType = 1; hashGenesisBlock = genesis.GetHash(); - assert(hashGenesisBlock == uint256("0x00000e258596876664989374c7ee36445cf5f4f80889af415cc32478214394ea")); + assert(hashGenesisBlock == uint256("0x00000f43b54bbcae395d815b255ac4ed0693bca7987d72b873d5d4b68d73a6bd")); vFixedSeeds.clear(); vSeeds.clear(); + vSeeds.push_back(CDNSSeedData("autoseeds.tiviseed.diviproject.org", "autoseeds.tiviseed.diviproject.org")); base58Prefixes[PUBKEY_ADDRESS] = std::vector(1, 139); // Testnet divi addresses start with 'x' or 'y' base58Prefixes[SCRIPT_ADDRESS] = std::vector(1, 19); // Testnet divi script addresses start with '8' or '9' diff --git a/divi/src/clientversion.h b/divi/src/clientversion.h index e89108449..5b6690fe4 100644 --- a/divi/src/clientversion.h +++ b/divi/src/clientversion.h @@ -12,7 +12,7 @@ //! These need to be macros, as clientversion.cpp's and divi*-res.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 1 #define CLIENT_VERSION_MINOR 01 -#define CLIENT_VERSION_REVISION 1 +#define CLIENT_VERSION_REVISION 2 #define CLIENT_VERSION_BUILD 00 #define CLIENT_VERSION_IS_RELEASE true // Todo: !! Set to true for release, false for prerelease or test build @@ -53,7 +53,7 @@ extern const std::string CLIENT_BUILD; extern const std::string CLIENT_DATE; const std::string CLIENT_NAME_STR("DIVI Core"); -const std::string CLIENT_VERSION_STR("1.1.1.0"); +const std::string CLIENT_VERSION_STR("1.1.2.0"); std::string FormatFullVersion(); diff --git a/divi/src/MockBlockSubsidyProvider.h b/divi/src/test/MockBlockSubsidyProvider.h similarity index 100% rename from divi/src/MockBlockSubsidyProvider.h rename to divi/src/test/MockBlockSubsidyProvider.h