From 151aa9d13596ab714cb1ddf712e171faa67fb2a7 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Thu, 22 Feb 2018 16:59:37 +0100 Subject: [PATCH] fix prev; offset is relative to last forking height --- lib/blockchain.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/blockchain.py b/lib/blockchain.py index 4de3e076..d592e584 100644 --- a/lib/blockchain.py +++ b/lib/blockchain.py @@ -226,9 +226,6 @@ class Blockchain(util.PrintError): if truncate and offset != self._size*80: f.seek(offset) f.truncate() - self.print_error( - 'write. truncating to offset {}, which is around chunk {}' - .format(offset, offset//80//2016)) f.seek(offset) f.write(data) f.flush()