From 3f41b5299d2c9df494c0cf50b3f898924c0d8672 Mon Sep 17 00:00:00 2001 From: vrde Date: Fri, 29 Jul 2016 10:24:31 +0200 Subject: [PATCH] Remove unused method --- bigchaindb/processes.py | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/bigchaindb/processes.py b/bigchaindb/processes.py index 1dd6f80f..fe641750 100644 --- a/bigchaindb/processes.py +++ b/bigchaindb/processes.py @@ -34,27 +34,6 @@ class Processes(object): self.q_block_new_vote = mp.Queue() self.q_revert_delete = mp.Queue() - def map_backlog(self): - # listen to changes on the backlog and redirect the changes - # to the correct queues - - # create a bigchain instance - b = Bigchain() - - for change in r.table('backlog').changes().run(b.conn): - - # insert - if change['old_val'] is None: - pass - - # delete - if change['new_val'] is None: - pass - - # update - if change['new_val'] is not None and change['old_val'] is not None: - pass - def map_bigchain(self): # listen to changes on the bigchain and redirect the changes # to the correct queues