diff --git a/CMakeLists.txt b/CMakeLists.txt index b58d803..14ae618 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,6 +65,7 @@ set(CRYPTONOTE_SOURCES cryptonote/external/miniupnpc/receivedata.c cryptonote/external/miniupnpc/upnpcommands.c cryptonote/external/miniupnpc/upnpreplyparse.c + cryptonote/src/Common/DnsTools.cpp cryptonote/src/Common/Base58.cpp cryptonote/src/Common/CommandLine.cpp cryptonote/src/Common/Util.cpp diff --git a/CryptoNoteWallet.cmake b/CryptoNoteWallet.cmake index 97dc28b..4b609db 100644 --- a/CryptoNoteWallet.cmake +++ b/CryptoNoteWallet.cmake @@ -1,4 +1,4 @@ set(CN_PROJECT_NAME "Nutucoin-GUI") set(CN_CURRENCY_DISPLAY_NAME "Nutucoin-GUI") set(CN_CURRENCY_TICKER "NTU") -set(CN_VERSION 1.0.1) +set(CN_VERSION 1.1.0) diff --git a/src/Worker.cpp b/src/Worker.cpp index 282b241..99d08ae 100644 --- a/src/Worker.cpp +++ b/src/Worker.cpp @@ -50,7 +50,7 @@ void Worker::run() { localNonce = ++m_nonce; localJob.blob.replace(39, sizeof(localNonce), reinterpret_cast(&localNonce), sizeof(localNonce)); std::memset(&hash, 0, sizeof(hash)); - Crypto::cn_slow_hash(context, localJob.blob.data(), localJob.blob.size(), hash); + Crypto::cn_lite_slow_hash_v1(context, localJob.blob.data(), localJob.blob.size(), hash); ++m_hashCounter; if (Q_UNLIKELY(((quint32*)&hash)[7] < localJob.target)) { m_observer->processShare(localJob.jobId, localNonce, QByteArray(reinterpret_cast(&hash), sizeof(hash))); diff --git a/src/cryptonotewallet.rc b/src/cryptonotewallet.rc index c9fdd5a..e61e3f2 100644 --- a/src/cryptonotewallet.rc +++ b/src/cryptonotewallet.rc @@ -2,10 +2,10 @@ IDI_ICON1 ICON "images\\nutucoin.ico" #include -#define VER_FILEVERSION 1,0,0,7 -#define VER_FILEVERSION_STR "1.0.0.7\0" -#define VER_PRODUCTVERSION 1,0,1 -#define VER_PRODUCTVERSION_STR "1.0.1\0" +#define VER_FILEVERSION 1,1,0,10 +#define VER_FILEVERSION_STR "1.1.0.10\0" +#define VER_PRODUCTVERSION 1,1,0 +#define VER_PRODUCTVERSION_STR "1.1.0\0" #define VER_FILEDESCRIPTION_STR "Nutucoin-GUI" #define VER_INTERNALNAME_STR "Nutucoin-GUI" #define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2018, Nutucoin Developers"