More clang fixes

This commit is contained in:
SChernykh
2021-08-23 11:44:26 +02:00
parent 4a5691e349
commit 39a8c68ab7
5 changed files with 5 additions and 9 deletions

View File

@@ -26,15 +26,12 @@ class p2pool;
class Mempool : public nocopy_nomove
{
public:
explicit Mempool(p2pool* pool);
Mempool();
~Mempool();
void add(const TxMempoolData& tx);
void swap(std::vector<TxMempoolData>& transactions);
private:
p2pool* m_pool;
public:
mutable uv_rwlock_t m_lock;
std::vector<TxMempoolData> m_transactions;