diff --git a/hive/indexer/blocks.py b/hive/indexer/blocks.py index 8869d47373971c2d22d09b3cb22194f750470293..fdb55721ddd4ed2d0152e602d9c254dbb0d02e6f 100644 --- a/hive/indexer/blocks.py +++ b/hive/indexer/blocks.py @@ -107,7 +107,7 @@ class Blocks: val = {'hbd_payout':op_value['hbd_payout'], 'hive_payout':op_value['hive_payout'], 'vesting_payout':op_value['vesting_payout']} elif op_type == 'comment_reward_operation': if('payout' not in op_value or op_value['payout'] is None): - logger.error("Broken op: `{}'".format(str(op))) + log.error("Broken op: `{}'".format(str(vop))) key = "{}/{}".format(op_value['author'], op_value['permlink']) val = {'payout':op_value['payout'], 'author_rewards':op_value['author_rewards']} elif op_type == 'effective_comment_vote_operation': diff --git a/hive/indexer/sync.py b/hive/indexer/sync.py index c040832bf24305c048d9e7ea83af9898fa5664d7..fffc403decac7d369d52317794295a0e522fdd89 100644 --- a/hive/indexer/sync.py +++ b/hive/indexer/sync.py @@ -40,10 +40,11 @@ def print_ops_stats(prefix, ops_stats): log.info("`{}': {}".format(k, v)) log.info("############################################################################") + def prepare_vops(vops_by_block): preparedVops = {} - for blockNum, blockDict in vops_by_block.items(): + for blockNum, blockDict in vops_by_block.items(): vopsList = blockDict['ops'] date = blockDict['timestamp'] preparedVops[blockNum] = Blocks.prepare_vops(vopsList, date)