Skip to content

Commit dc7fd7b

Browse files
authored
Merge pull request #198 from galpHub/UpdateVersion
Update version
2 parents 6fb99ac + ec70375 commit dc7fd7b

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

divi/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 1)
44
define(_CLIENT_VERSION_MINOR, 1)
5-
define(_CLIENT_VERSION_REVISION, 1)
5+
define(_CLIENT_VERSION_REVISION, 2)
66
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2017)

divi/src/chainparams.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,17 +396,18 @@ class CTestNetParams : public CMainParams
396396
nTreasuryPaymentsCycle = 201;
397397

398398
//! Modify the testnet genesis block so the timestamp is valid for a later start.
399-
genesis.nTime = 1537971708;
400-
genesis.nNonce = 749845;
399+
genesis.nTime = 1591798387;
400+
genesis.nNonce = 2105601;
401401

402402
nExtCoinType = 1;
403403

404404

405405
hashGenesisBlock = genesis.GetHash();
406-
assert(hashGenesisBlock == uint256("0x00000e258596876664989374c7ee36445cf5f4f80889af415cc32478214394ea"));
406+
assert(hashGenesisBlock == uint256("0x00000f43b54bbcae395d815b255ac4ed0693bca7987d72b873d5d4b68d73a6bd"));
407407

408408
vFixedSeeds.clear();
409409
vSeeds.clear();
410+
vSeeds.push_back(CDNSSeedData("autoseeds.tiviseed.diviproject.org", "autoseeds.tiviseed.diviproject.org"));
410411

411412
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 139); // Testnet divi addresses start with 'x' or 'y'
412413
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 19); // Testnet divi script addresses start with '8' or '9'

divi/src/clientversion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//! These need to be macros, as clientversion.cpp's and divi*-res.rc's voodoo requires it
1313
#define CLIENT_VERSION_MAJOR 1
1414
#define CLIENT_VERSION_MINOR 01
15-
#define CLIENT_VERSION_REVISION 1
15+
#define CLIENT_VERSION_REVISION 2
1616
#define CLIENT_VERSION_BUILD 00
1717

1818
#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;
5353
extern const std::string CLIENT_DATE;
5454

5555
const std::string CLIENT_NAME_STR("DIVI Core");
56-
const std::string CLIENT_VERSION_STR("1.1.1.0");
56+
const std::string CLIENT_VERSION_STR("1.1.2.0");
5757

5858

5959
std::string FormatFullVersion();

0 commit comments

Comments
 (0)