Skip to content

Commit

Permalink
v.2.8.3 (#322)
Browse files Browse the repository at this point in the history
* Fixed potential crash when pool user/pass is not initialized
  • Loading branch information
Bendr0id committed Oct 22, 2020
1 parent 2e616cd commit 3bd31b5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 2.8.3
* Fixed potential crash when pool user/pass is not initialized
# 2.8.2
* Added turtlecoin Chukwa v2 algo (`chukwav2`) or coin (`turtle` for autoswitch) for upcoming hard fork at block 3,000,000
* Removed obsolete rx/loki randomx variant (Loki switched to PoS)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Full Windows/Linux compatible, and you can mix Linux and Windows miner on one XM

## Last integrated algos in XMRigCC:

* **Turtlecoin** argon2 chukwa variant 2 (algo: "argon2/chukwav2")
* **Panthera (XLA)** variant (algo: "panthera")
* **ninjacoin** variant (algo: "ninja")
* **AstroBWT** variant (algo: "astrobwt")
Expand Down
4 changes: 2 additions & 2 deletions src/base/net/stratum/NetworkState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ rapidjson::Value xmrig::NetworkState::getResults(rapidjson::Document &doc, int v
void xmrig::NetworkState::getConnection(ClientStatus& clientStatus) const
{
clientStatus.setCurrentPool(m_pool);
clientStatus.setCurrentPoolUser(m_user.data());
clientStatus.setCurrentPoolPass(m_pass.data());
clientStatus.setCurrentAlgoName(m_algorithm.name());
clientStatus.setCurrentPoolUser(m_user ? m_user.data() : "");
clientStatus.setCurrentPoolPass(m_pass ? m_pass.data() : "");
}

void xmrig::NetworkState::getResults(ClientStatus& clientStatus) const
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
#define APP_ID "XMRigCC"
#define APP_NAME "XMRigCC"
#define APP_DESC "XMRigCC CPU miner"
#define APP_VERSION "2.8.2"
#define APP_VERSION "2.8.3"
#define APP_DOMAIN ""
#define APP_SITE "https://github.com/BenDr0id/xmrigCC/"
#define APP_COPYRIGHT "Copyright (C) 2017- XMRigCC"
#define APP_KIND "cpu"

#define APP_VER_MAJOR 2
#define APP_VER_MINOR 8
#define APP_VER_PATCH 2
#define APP_VER_PATCH 3

#ifndef NDEBUG
#define BUILD_TYPE "DEBUG"
Expand Down

0 comments on commit 3bd31b5

Please sign in to comment.