Merge pull request #3116

269ba252 wallet2::import_blockchain fix import loop (Jaquee)
pull/95/head
Riccardo Spagni 6 years ago
commit d061c312fb
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -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));
}

Loading…
Cancel
Save