Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion divi/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
7 changes: 4 additions & 3 deletions divi/src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<unsigned char>(1, 139); // Testnet divi addresses start with 'x' or 'y'
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 19); // Testnet divi script addresses start with '8' or '9'
Expand Down
4 changes: 2 additions & 2 deletions divi/src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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();
Expand Down