From 06463e3e686be8f0fbe35bca59ce8dc211f37cfc Mon Sep 17 00:00:00 2001 From: SChernykh <15806605+SChernykh@users.noreply.github.com> Date: Wed, 25 Jun 2025 08:03:43 +0200 Subject: [PATCH] p2pool v4.8.1 --- src/p2p_server.cpp | 4 ++-- src/util.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/p2p_server.cpp b/src/p2p_server.cpp index 356e89f..79ac565 100644 --- a/src/p2p_server.cpp +++ b/src/p2p_server.cpp @@ -810,8 +810,8 @@ P2PServer::Broadcast::Broadcast(const PoolBlock& block, const PoolBlock* parent) { Broadcast* data = this; - data->id = block.m_sidechainId; - data->received_timestamp = block.m_receivedTimestamp; + id = block.m_sidechainId; + received_timestamp = block.m_receivedTimestamp; int outputs_offset, outputs_blob_size; const std::vector mainchain_data = block.serialize_mainchain_data(nullptr, nullptr, &outputs_offset, &outputs_blob_size); diff --git a/src/util.h b/src/util.h index 48af07c..c35c5b2 100644 --- a/src/util.h +++ b/src/util.h @@ -36,7 +36,7 @@ namespace p2pool { #define P2POOL_VERSION_MAJOR 4 #define P2POOL_VERSION_MINOR 8 -#define P2POOL_VERSION_PATCH 0 +#define P2POOL_VERSION_PATCH 1 constexpr uint32_t P2POOL_VERSION = (P2POOL_VERSION_MAJOR << 16) | (P2POOL_VERSION_MINOR << 8) | P2POOL_VERSION_PATCH;