From ac0838e678ee109174b4983d09178b0bde74be97 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Sat, 27 Jan 2018 20:23:07 -0600 Subject: [PATCH] properly save block list --- onionr/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/core.py b/onionr/core.py index e364775e..90a3d89a 100644 --- a/onionr/core.py +++ b/onionr/core.py @@ -285,7 +285,7 @@ class Core: 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): + for i in self.getBlockList(True).split("\n"): print('UNSAVED BLOCK:', i) return def getPeerInfo(self, peer, info):