| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
The login result of a pool contains the first job for the miner.
In the case where the pool is sending very fast after the pool login result
a new job it is possible that the newer job is processed faster than the job within the login result.
The result will be that the miner is mining an older job instead the newest (last received).
- enumerate all received messages
- trace the message id of the last procssed job
- skip all jobs where the message id is older than the last procesed id
|
|\
| |
| | |
ignore duplicated equal job from pools
|
| |
| |
| |
| |
| |
| |
| | |
Some pools or proxys are sending multiple times in row the same job to the miner.
This PR will extent the miner to trigger an socket error if job with the same `jobID` than the current active job is received.
Move motd evaluation before the possibil part where a job is ignored.
|
|/
|
|
| |
Trigger event with a new job after the current pool job is updated.
|
| |
|
|
|
|
|
|
| |
solve #1494
- add algorithm `cryptonight_v7_stellite` (internal named: `cryptonight_stellite`)
|
|\
| |
| | |
Small typo correction
|
| | |
|
| |
| |
| |
| | |
changes printed algorithm names to algorithms exposed to the used instead of internal used names
|
|/
|
|
|
| |
- add algorithm `cryptonight_lite_v7_xor`
- update documentation
|
|
|
|
|
|
|
|
|
|
|
|
| |
clang warns about the wrong usage:
```
```
xmrstak/net/jpsock.cpp:232:30: warning: parentheses were disambiguated as redundant parentheses around declaration of variable named 'job_mutex' [-Wvexing-parse]
std::unique_lock<std::mutex>(job_mutex);
^~~~~~~~~~~
xmrstak/net/jpsock.cpp:232:30: note: add a variable name to declare a 'std::unique_lock<std::mutex>' initialized with 'job_mutex'
std::unique_lock<std::mutex>(job_mutex);
```
|
| |
|
| |
|
|
|
|
|
| |
- add new pow for AEON
- fix missing cryptonight-heavy selection for multi hashes
|
|
|
|
|
|
|
| |
Co-authored-by: psychocrypt <psychocryptHPC@gmail.com>
Co-authored-by: fireice-uk <fireice-uk@users.noreply.github.com>
Co-authored-by: Lee Clagett <code@leeclagett.com>
Co-authored-by: curie-kief <curie-kief@users.noreply.github.com>
|
| |
|
| |
|
| |
|
|
|
|
| |
- removed all space indention in `*.hpp` and `*.cpp` files
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Multi-pool first draft
* Fix wspace from new IDE
* Better TLS error message
* Fix TLS bug
* Don't put dev pool on stats + pool change-back
* bug fixes
* Error message work
* fix win build
* add per-pool nicehash setting
* Fix bugs
* rm debug msg
* Multipool guided setup
* Support TLS and Nicehash in config
* prelim jconf changes
* final multipool changes
* increase default retry_time to 30, fix mac erro
* rm debug dev pool settings
* Fix another source of connect runaway
|
|
|
|
|
| |
- remove 32bit target value
- use always 64bit target for amd backend
|
| |
|
| |
|
|
- move source code to `src`
- categorize files and move to group folder
- change upper case class files to lower case
- change C++ header to `*.hpp`
|