From f4bb9ca093dff6a6d0d70043d812b0d626d5510b Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Sun, 28 Jan 2018 16:03:55 -0600 Subject: [PATCH] fixed process blocks core call --- onionr/communicator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/communicator.py b/onionr/communicator.py index 2eb81518..0bd93657 100755 --- a/onionr/communicator.py +++ b/onionr/communicator.py @@ -120,7 +120,7 @@ class OnionrCommunicate: Work with the block database and download any missing blocks This is meant to be called from the communicator daemon on its timer. ''' - for i in self.getBlockList(True).split("\n"): + for i in self._core.getBlockList(True).split("\n"): if i != "": print('UNSAVED BLOCK:', i) return