From feac33d31615283320f663126b6724b72f82393d Mon Sep 17 00:00:00 2001
From: Dariusz Kedzierski <dkedzierski@syncad.com>
Date: Wed, 2 Sep 2020 21:39:02 +0200
Subject: [PATCH] Removed some debug code

---
 hive/indexer/custom_op.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/hive/indexer/custom_op.py b/hive/indexer/custom_op.py
index 40e4ec880..7c7ccd58d 100644
--- a/hive/indexer/custom_op.py
+++ b/hive/indexer/custom_op.py
@@ -57,9 +57,6 @@ class CustomOp:
                 if block_num < 6000000 and not isinstance(op_json, list):
                     op_json = ['reblog', op_json]  # legacy compat
                 cls._process_legacy(account, op_json, block_date, block_num)
-                with open("reblog.log", "a") as reblog_file:
-                    reblog_file.write("{} -> {}".format(account, op_json))
-                    reblog_file.write("\n")
             elif op['id'] == 'community':
                 if block_num > START_BLOCK:
                     process_json_community_op(account, op_json, block_date)
-- 
GitLab