-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to latest version of XMRig 3.1.0, disable donation mining
- Loading branch information
Hayzam Sherif
authored and
Hayzam Sherif
committed
Aug 22, 2019
1 parent
6e68487
commit d4d9435
Showing
567 changed files
with
56,498 additions
and
21,725 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,6 @@ on linux | |
--no-huge-pages disable huge pages support | ||
--no-color disable colored output | ||
--variant algorithm PoW variant | ||
--donate-level=N donate level, default 5% (5 minutes in 100 minutes) | ||
--user-agent set custom user-agent string for pool | ||
-B, --background run the miner in the background | ||
-c, --config=FILE load a JSON-format configuration file | ||
|
@@ -115,7 +114,7 @@ Also you can use configuration via config file, default name **config.json**. So | |
|
||
## Other information | ||
* No HTTP support, only stratum protocol support. | ||
* Default donation 5% (5 minutes in 100 minutes) can be reduced to 1% via option `donate-level`. | ||
* Donation free miner. | ||
|
||
### CPU mining performance | ||
* **Intel i7-7700** - 307 H/s (4 threads) | ||
|
@@ -131,10 +130,11 @@ Please note performance is highly dependent on system load. The numbers above ar | |
* Enable fast memory (Large/Huge pages). | ||
|
||
## Donations | ||
The donation in XLArig helps out a bit since our project is a community funded one. These are the addresses of the official developers of XMRig as we recieve the in-built miner donations from XLArig. | ||
The donation mining in XLArig has been turned off, if you wish to help the original creators or the Scala Project team donate to the addresses below. | ||
|
||
* XMR: `48edfHu7V9Z84YzzMa6fUueoELZ9ZRXq9VetWzYGzKt52XU5xvqgzYnDK9URnRoJMk1j8nLwEVsaSWJ4fhdUyZijBGUicoD` | ||
* BTC: `1P7ujsXeX7GxQwHNnJsRMgAdNkFZmNVqJT` | ||
* XLA: `SEiTBcLGpfm3uj5b5RaZDGSUoAGnLCyG5aJjAwko67jqRwWEH26NFPd26EUpdL1zh4RTmTdRWLz8WCmk5F4umYaFByMtJT6RLjD6vzApQJWfi` | ||
|
||
## Building | ||
|
||
|
@@ -174,4 +174,4 @@ make | |
|
||
|
||
## Contacts | ||
* [email protected] | ||
* [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
find_path( | ||
HWLOC_INCLUDE_DIR | ||
NAMES hwloc.h | ||
PATHS "${XMRIG_DEPS}" ENV "XMRIG_DEPS" | ||
PATH_SUFFIXES "include" | ||
NO_DEFAULT_PATH | ||
) | ||
|
||
find_path(HWLOC_INCLUDE_DIR NAMES hwloc.h) | ||
|
||
find_library( | ||
HWLOC_LIBRARY | ||
NAMES hwloc.a hwloc libhwloc | ||
PATHS "${XMRIG_DEPS}" ENV "XMRIG_DEPS" | ||
PATH_SUFFIXES "lib" | ||
NO_DEFAULT_PATH | ||
) | ||
|
||
find_library(HWLOC_LIBRARY NAMES hwloc.a hwloc libhwloc) | ||
|
||
set(HWLOC_LIBRARIES ${HWLOC_LIBRARY}) | ||
set(HWLOC_INCLUDE_DIRS ${HWLOC_INCLUDE_DIR}) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(HWLOC DEFAULT_MSG HWLOC_LIBRARY HWLOC_INCLUDE_DIR) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
if (WITH_ARGON2) | ||
add_definitions(/DXMRIG_ALGO_ARGON2) | ||
|
||
list(APPEND HEADERS_CRYPTO | ||
src/crypto/argon2/Hash.h | ||
src/crypto/argon2/Impl.h | ||
) | ||
|
||
list(APPEND SOURCES_CRYPTO | ||
src/crypto/argon2/Impl.cpp | ||
) | ||
|
||
add_subdirectory(src/3rdparty/argon2) | ||
set(ARGON2_LIBRARY argon2) | ||
else() | ||
remove_definitions(/DXMRIG_ALGO_ARGON2) | ||
set(ARGON2_LIBRARY "") | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.