From df364ca504d10f38e17a4e16280b897321c2f0e9 Mon Sep 17 00:00:00 2001 From: mtrela <mtrela@syncad.com> Date: Mon, 3 Aug 2020 08:09:23 +0200 Subject: [PATCH] Merging dictionaries fixed --- hive/indexer/blocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive/indexer/blocks.py b/hive/indexer/blocks.py index db1b49424..2449ed465 100644 --- a/hive/indexer/blocks.py +++ b/hive/indexer/blocks.py @@ -248,7 +248,7 @@ class Blocks: vops = hived.get_virtual_operations(num) (vote_ops, comment_payout_ops, comment_payout_stats) = Blocks.prepare_vops(vops, cls._head_block_date) - cls.comment_payout_ops = {**Posts.comment_payout_ops, **comment_payout_ops} + Posts.comment_payout_ops = {**Posts.comment_payout_ops, **comment_payout_ops} for k, v in vote_ops.items(): Votes.effective_comment_vote_op(v, cls._head_block_date) -- GitLab