Skip to content

Commit f55cd99

Browse files
Ironborn Point
1 parent 1dc7cda commit f55cd99

File tree

4 files changed

+10
-18
lines changed

4 files changed

+10
-18
lines changed

CryptoNoteWallet.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
set(CN_PROJECT_NAME "DRAGONGLASS")
33
set(CN_CURRENCY_DISPLAY_NAME "DRAGONGLASS")
44
set(CN_CURRENCY_TICKER "DRGL")
5-
set(CN_VERSION 2.3.0)
5+
set(CN_VERSION 2.3.1)

README.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center"><img title="The Long Night Is Coming" src="https://raw.githubusercontent.com/ZirtysPerzys/DRGL-wallet/master/src/images/splash.png" width="1800" height="500" ><img/></h1>
1+
<h1 align="center"><img title="The Long Night Is Coming" src="https://raw.githubusercontent.com/ZirtysPerzys/DRGL/master/src/images/splash.png" width="1800" height="500" ><img/></h1>
22

33
Binaries are made available by community members. If you are able to compile on your operating system, please consider helping others by adding to the release. Also if your OS is available, please consider donating to the community member who made it possible.
44

@@ -8,22 +8,14 @@ Binaries are made available by community members. If you are able to compile on
88
**1. Clone wallet sources**
99

1010
```
11-
git clone https://github.com/zirtysperzys/DRGL-wallet.git
11+
git clone --recursive https://github.com/ZirtysPerzys/DRGL
1212
```
1313

14-
**2. Set symbolic link to coin sources at the same level as `src`. For example:**
15-
16-
```
17-
ln -s ../Dragonglass cryptonote
18-
```
19-
20-
Alternative way is to create git submodule:
21-
2214
```
23-
git submodule add https://github.com/zirtysperzys/Dragonglass.git cryptonote
15+
cd DRGL
2416
```
2517

26-
**3. Build**
18+
**2. Build**
2719

2820
```
2921
mkdir build && cd build && cmake .. && make

src/Worker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ void Worker::run() {
5050
localNonce = ++m_nonce;
5151
localJob.blob.replace(39, sizeof(localNonce), reinterpret_cast<char*>(&localNonce), sizeof(localNonce));
5252
std::memset(&hash, 0, sizeof(hash));
53-
Crypto::cn_slow_hash(context, localJob.blob.data(), localJob.blob.size(), hash);
53+
Crypto::cn_slow_hash(context, localJob.blob.data(), localJob.blob.size(), hash, 1);
5454
++m_hashCounter;
5555
if (Q_UNLIKELY(((quint32*)&hash)[7] < localJob.target)) {
5656
m_observer->processShare(localJob.jobId, localNonce, QByteArray(reinterpret_cast<char*>(&hash), sizeof(hash)));

src/cryptonotewallet.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ IDI_ICON1 ICON "images\DRGL.ico"
22

33
#include <windows.h>
44

5-
#define VER_FILEVERSION 2,2,0,8
6-
#define VER_FILEVERSION_STR "2.2.0.8\0"
7-
#define VER_PRODUCTVERSION 2,2,0
8-
#define VER_PRODUCTVERSION_STR "2.2.0\0"
5+
#define VER_FILEVERSION 2,3,1,8
6+
#define VER_FILEVERSION_STR "2.3.1.8\0"
7+
#define VER_PRODUCTVERSION 2,3,1
8+
#define VER_PRODUCTVERSION_STR "2.3.1\0"
99
#define VER_FILEDESCRIPTION_STR "DRGL"
1010
#define VER_INTERNALNAME_STR "Dragonglass"
1111
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2018 DRÆGONGLASS"

0 commit comments

Comments
 (0)