p2pool v4.8

This commit is contained in:
SChernykh
2025-06-15 09:17:45 +02:00
parent 8f716bd1f1
commit 60285a21dd
2 changed files with 2 additions and 2 deletions

View File

@@ -2028,7 +2028,7 @@ void p2pool::on_external_block(const PoolBlock& block)
void p2pool::api_update_aux_data()
{
if (!m_api || m_stopped) {
if (!m_api || !m_params->m_localStats || m_stopped) {
return;
}

View File

@@ -35,7 +35,7 @@
namespace p2pool {
#define P2POOL_VERSION_MAJOR 4
#define P2POOL_VERSION_MINOR 7
#define P2POOL_VERSION_MINOR 8
#define P2POOL_VERSION_PATCH 0
constexpr uint32_t P2POOL_VERSION = (P2POOL_VERSION_MAJOR << 16) | (P2POOL_VERSION_MINOR << 8) | P2POOL_VERSION_PATCH;