Skip to content
This repository has been archived by the owner on Apr 24, 2022. It is now read-only.

Commit

Permalink
Changelog and parameters by value
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaLanfranchi authored and chfast committed Jun 5, 2018
1 parent cff0dc6 commit f2734e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Stratum nicehash. Avoid recalculating target with every job [#1156](https://github.com/ethereum-mining/ethminer/pull/1156).
- Drop duplicate stratum jobs (pool bug workaround) [#1161](https://github.com/ethereum-mining/ethminer/pull/1161).
- CLI11 command line parsing support added [#1160](https://github.com/ethereum-mining/ethminer/pull/1160).
- Farm mode (get_work): fixed loss of valid shares and increment in stales [#1215](https://github.com/ethereum-mining/ethminer/pull/1215).
- Build fixes & improvements [#1214](https://github.com/ethereum-mining/ethminer/pull/1214).
### Removed
- Disabled Debug configuration for Visual Studio [#69](https://github.com/ethereum-mining/ethminer/issues/69) [#1131](https://github.com/ethereum-mining/ethminer/pull/1131).
2 changes: 1 addition & 1 deletion libpoolprotocols/getwork/EthGetworkClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ using namespace std;
using namespace dev;
using namespace eth;

EthGetworkClient::EthGetworkClient(unsigned const & farmRecheckPeriod, bool const & submitHashrate) : PoolClient(), Worker("getwork"), m_submit_hashrate(submitHashrate)
EthGetworkClient::EthGetworkClient(unsigned farmRecheckPeriod, bool submitHashrate) : PoolClient(), Worker("getwork"), m_submit_hashrate(submitHashrate)
{
m_farmRecheckPeriod = farmRecheckPeriod;
m_authorized = true;
Expand Down
2 changes: 1 addition & 1 deletion libpoolprotocols/getwork/EthGetworkClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using namespace eth;
class EthGetworkClient : public PoolClient, Worker
{
public:
EthGetworkClient(unsigned const & farmRecheckPeriod, bool const & submitHashrate);
EthGetworkClient(unsigned farmRecheckPeriod, bool submitHashrate);
~EthGetworkClient();

void connect() override;
Expand Down

0 comments on commit f2734e6

Please sign in to comment.