From b40ca4d2c8cc893db2c6160d4c0c899daaac9968 Mon Sep 17 00:00:00 2001
From: mtrela <mtrela@syncad.com>
Date: Mon, 14 Sep 2020 14:51:30 +0200
Subject: [PATCH] Small fix in `_after_initial_sync` method

---
 hive/db/db_state.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/hive/db/db_state.py b/hive/db/db_state.py
index 3d7b7865d..64dd35b68 100644
--- a/hive/db/db_state.py
+++ b/hive/db/db_state.py
@@ -206,7 +206,9 @@ class DbState:
 
         last_imported_block = DbState.db().query_one("SELECT block_num FROM hive_state LIMIT 1")
 
-        assert current_imported_block >= last_imported_block
+        log.info("[INIT] Current imported block: %s Last imported block: %s", current_imported_block, last_imported_block)
+        if last_imported_block > current_imported_block:
+          last_imported_block = current_imported_block
 
         synced_blocks = current_imported_block - last_imported_block
 
-- 
GitLab