aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/tx_pool.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2023-11-06 09:23:48 -0500
committerluigi1111 <luigi1111w@gmail.com>2023-11-06 09:23:48 -0500
commita87f2bdd3f07a4365406454a5dab386d9cf2e114 (patch)
treedb68640c21f684e7af19727938349e6ba5c615bb /src/cryptonote_core/tx_pool.h
parentMerge pull request #8965 (diff)
parentgcc: fix uninitialized constructor warnings (diff)
downloadmonero-a87f2bdd3f07a4365406454a5dab386d9cf2e114.tar.xz
Merge pull request #8979
80b5bf8 gcc: fix uninitialized constructor warnings (jeff)
Diffstat (limited to 'src/cryptonote_core/tx_pool.h')
-rw-r--r--src/cryptonote_core/tx_pool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/tx_pool.h b/src/cryptonote_core/tx_pool.h
index 47268efb6..3bb96d3a8 100644
--- a/src/cryptonote_core/tx_pool.h
+++ b/src/cryptonote_core/tx_pool.h
@@ -676,7 +676,7 @@ private:
//! Next timestamp that a DB check for relayable txes is allowed
std::atomic<time_t> m_next_check;
- friend class BlockchainAndPool;
+ friend struct BlockchainAndPool;
};
}