Fixed block broadcast detection

Peers could ban each other erroneously for "not broadcasting blocks"
pull/297/head
SChernykh 2023-12-23 19:06:18 +01:00
parent e44df03d82
commit bc36be1e58
1 changed files with 1 additions and 0 deletions

View File

@ -2426,6 +2426,7 @@ void P2PServer::P2PClient::on_block_notify(const uint8_t* buf)
memcpy(id.h, buf, HASH_SIZE);
m_broadcastedHashes[m_broadcastedHashesIndex++ % array_size(&P2PClient::m_broadcastedHashes)] = id;
m_lastBroadcastTimestamp = seconds_since_epoch();
P2PServer* server = static_cast<P2PServer*>(m_owner);