Skip to content

Commit 99c3462

Browse files
committed
Updated --free-version miner to v7 (monero-project/monero#3253).
Free Software Free Society To support commits by ctubio, you can buy-me-a-drink with a small git tip at: 1GitTipgxvKB3zjCLXRcSgDhC9pivkpc7u I promise to drink chocolate milk in the development of the next commit. To request new features or in case this commit breaks something for you, please create a new github issue with all possible details, but never share your API Keys! Signed-off-by: Carles Tubio <ctubio@users.noreply.github.com>
1 parent 9fc62cf commit 99c3462

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ K ?= K.sh
22
MAJOR = 0
33
MINOR = 4
44
PATCH = 6
5-
BUILD = 8
5+
BUILD = 9
66
CHOST ?= $(shell $(MAKE) CHOST= chost -s)
77
CARCH = x86_64-linux-gnu arm-linux-gnueabihf aarch64-linux-gnu x86_64-apple-darwin17 x86_64-w64-mingw32
88
KLOCAL := build-$(CHOST)/local

src/server/cf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ namespace K {
225225
return FN::strU(argCurrency.substr(0, argCurrency.find("/")));
226226
};
227227
inline mCoinId quote() {
228-
return FN::strU(argCurrency.substr(argCurrency.find("/")+1));
228+
return FN::strU(argCurrency.substr(argCurrency.find("/") + 1));
229229
};
230230
inline int chambers() {
231231
if (argTestChamber == 1)

0 commit comments

Comments
 (0)