1
0
Fork 0
forked from lthn/blockchain

fixed more serious warnings for gcc

This commit is contained in:
sowle 2025-01-16 04:24:00 +01:00
parent e2a70189b3
commit cc33fd8b9c
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC
2 changed files with 5 additions and 1 deletions

View file

@ -260,6 +260,10 @@ namespace net_utils
m_pcb.reset(new abstract_callback<callback_t>(cb));
return content_encoding_gzip::update_in(piece_of_transfer);
}
virtual void stop(std::string& OUT collect_remains) override
{}
template<class callback_t>
bool stop(callback_t cb)
{return true;}

View file

@ -136,8 +136,8 @@ namespace currency
void check_free_space();
blockchain_storage m_blockchain_storage;
tx_memory_pool m_mempool;
blockchain_storage m_blockchain_storage;
i_currency_protocol* m_pprotocol;
i_critical_error_handler* m_critical_error_handler;
epee::critical_section m_incoming_tx_lock;