Merge pull request #1724

cca95c1c blockchain_db: do not throw on expected partial results getting keys (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2017-02-21 11:23:03 +02:00
commit 59d96eedd8
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
4 changed files with 11 additions and 4 deletions

View file

@ -3544,7 +3544,7 @@ void Blockchain::output_scan_worker(const uint64_t amount, const std::vector<uin
{
try
{
m_db->get_output_key(amount, offsets, outputs);
m_db->get_output_key(amount, offsets, outputs, true);
}
catch (const std::exception& e)
{