From 9d58749b854e4ef3a66b220f30d5651ed000d36d Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 19 Jan 2019 16:39:56 +0000 Subject: [PATCH] wallet2: fix hashchain going out of sync on refresh error --- src/wallet/wallet2.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index f02e5b6e1..a86d681d3 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -2930,6 +2930,11 @@ void wallet2::refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blo { LOG_PRINT_L1("Another try pull_blocks (try_count=" << try_count << ")..."); first = true; + start_height = 0; + blocks.clear(); + parsed_blocks.clear(); + short_chain_history.clear(); + get_short_chain_history(short_chain_history, 1); ++try_count; } else