Blockchain: reflect assert behavior of blockchain_storage for get_tx_outputs_gindexs()

This commit is contained in:
warptangent 2015-01-30 17:28:38 -08:00
parent d00ee784db
commit c8d27fb38d
No known key found for this signature in database
GPG key ID: 0E490BEBFBE4E92D

View file

@ -1808,6 +1808,8 @@ bool Blockchain::get_tx_outputs_gindexs(const crypto::hash& tx_id, std::vector<u
// get amount output indexes, currently referred to in parts as "output global indices", but they are actually specific to amounts
indexs = m_db->get_tx_amount_output_indices(tx_id);
CHECK_AND_ASSERT_MES(indexs.size(), false, "internal error: global indexes for transaction " << tx_id << " is empty");
return true;
}
//------------------------------------------------------------------