tx_pool: add a debug message when adding a tx to the pool

This commit is contained in:
moneromooo-monero 2017-02-11 19:44:38 +00:00
parent 9faef1f83a
commit 5adcb5a48c
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -255,6 +255,7 @@ namespace cryptonote
m_txs_by_fee_and_receive_time.emplace(std::pair<double, std::time_t>(fee / (double)blob_size, receive_time), id);
MINFO("Transaction " << id << " added to pool");
return true;
}
//---------------------------------------------------------------------------------