core: don't try to re-relay an empty set of pool transactions

This commit is contained in:
moneromooo-monero 2017-03-12 14:51:32 +00:00
parent 1dfed893e0
commit 74b216a17f
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -796,7 +796,7 @@ namespace cryptonote
{
// we attempt to relay txes that should be relayed, but were not
std::list<std::pair<crypto::hash, cryptonote::transaction>> txs;
if (m_mempool.get_relayable_transactions(txs))
if (m_mempool.get_relayable_transactions(txs) && !txs.empty())
{
cryptonote_connection_context fake_context = AUTO_VAL_INIT(fake_context);
tx_verification_context tvc = AUTO_VAL_INIT(tvc);