diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index 73e3941876..ac1a26c23a 100644 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -83,7 +83,7 @@ script: | make $MAKEOPTS make deploy make install-strip - cp -f darkcoin-*setup*.exe $BINDIR/ + #cp -f darkcoin-*setup*.exe $BINDIR/ unset LD_PRELOAD unset FAKETIME done # for BITS in diff --git a/src/clientversion.h b/src/clientversion.h index 39cf585a71..364debf360 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -13,7 +13,7 @@ #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 11 #define CLIENT_VERSION_REVISION 0 -#define CLIENT_VERSION_BUILD 0 +#define CLIENT_VERSION_BUILD 1 // Set to true for release, false for prerelease or test build #define CLIENT_VERSION_IS_RELEASE true diff --git a/src/main.cpp b/src/main.cpp index 694f77fe2e..7808c61ce9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1588,7 +1588,7 @@ unsigned int static DarkGravityWave(const CBlockIndex* pindexLast, const CBlockH unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock) { - uint retarget = DIFF_DGW; + unsigned int retarget = DIFF_DGW; if (!TestNet()) { if (pindexLast->nHeight + 1 >= 34140) retarget = DIFF_DGW; diff --git a/src/version.h b/src/version.h index 86ce9970f0..b8782b6ddf 100644 --- a/src/version.h +++ b/src/version.h @@ -33,7 +33,7 @@ static const int PROTOCOL_VERSION = 70052; static const int INIT_PROTO_VERSION = 209; // disconnect from peers older than this proto version -static const int MIN_PEER_PROTO_VERSION = 70052; //70046 +static const int MIN_PEER_PROTO_VERSION = 70046 // nTime field added to CAddress, starting with this version; // if possible, avoid requesting addresses nodes older than this