Merge pull request #3116

269ba252 wallet2::import_blockchain fix import loop (Jaquee)
This commit is contained in:
Riccardo Spagni 2018-01-27 17:27:07 -08:00
commit d061c312fb
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

View File

@ -8840,7 +8840,7 @@ void wallet2::import_blockchain(const std::tuple<size_t, crypto::hash, std::vect
m_blockchain.clear();
if (std::get<0>(bc))
{
for (size_t n = std::get<0>(bc); n > 0; ++n)
for (size_t n = std::get<0>(bc); n > 0; --n)
m_blockchain.push_back(std::get<1>(bc));
m_blockchain.trim(std::get<0>(bc));
}