Skip to content

Commit

Permalink
Updated --free-version miner to v7 (monero-project/monero#3253).
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
ctubio committed Apr 2, 2018
1 parent 9fc62cf commit 99c3462
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ K ?= K.sh
MAJOR = 0
MINOR = 4
PATCH = 6
BUILD = 8
BUILD = 9
CHOST ?= $(shell $(MAKE) CHOST= chost -s)
CARCH = x86_64-linux-gnu arm-linux-gnueabihf aarch64-linux-gnu x86_64-apple-darwin17 x86_64-w64-mingw32
KLOCAL := build-$(CHOST)/local
Expand Down
2 changes: 1 addition & 1 deletion src/server/cf.h
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ namespace K {
return FN::strU(argCurrency.substr(0, argCurrency.find("/")));
};
inline mCoinId quote() {
return FN::strU(argCurrency.substr(argCurrency.find("/")+1));
return FN::strU(argCurrency.substr(argCurrency.find("/") + 1));
};
inline int chambers() {
if (argTestChamber == 1)
Expand Down

0 comments on commit 99c3462

Please sign in to comment.