tx_pool: make spent return-by-reference as intended

This commit is contained in:
stoffu 2019-10-06 12:28:30 +09:00
parent b60cf6a938
commit ec14abdbe8
No known key found for this signature in database
GPG Key ID: 41DAB8343A9EC012
2 changed files with 2 additions and 2 deletions

View File

@ -908,7 +908,7 @@ namespace cryptonote
return true; return true;
} }
//--------------------------------------------------------------------------------- //---------------------------------------------------------------------------------
bool tx_memory_pool::check_for_key_images(const std::vector<crypto::key_image>& key_images, std::vector<bool> spent) const bool tx_memory_pool::check_for_key_images(const std::vector<crypto::key_image>& key_images, std::vector<bool>& spent) const
{ {
CRITICAL_REGION_LOCAL(m_transactions_lock); CRITICAL_REGION_LOCAL(m_transactions_lock);
CRITICAL_REGION_LOCAL1(m_blockchain); CRITICAL_REGION_LOCAL1(m_blockchain);

View File

@ -300,7 +300,7 @@ namespace cryptonote
* *
* @return true * @return true
*/ */
bool check_for_key_images(const std::vector<crypto::key_image>& key_images, std::vector<bool> spent) const; bool check_for_key_images(const std::vector<crypto::key_image>& key_images, std::vector<bool>& spent) const;
/** /**
* @brief get a specific transaction from the pool * @brief get a specific transaction from the pool