fix: order files in save_chunk too

This commit is contained in:
ThomasV 2017-07-20 07:56:54 +02:00
parent 0c6de8ff56
commit ab5a9f3ce4
1 changed files with 3 additions and 0 deletions

View File

@ -178,6 +178,9 @@ class Blockchain(util.PrintError):
with open(filename, 'rb+') as f:
f.seek(d)
f.write(chunk)
# order files
if self.parent and self.parent.get_branch_size() < self.get_branch_size():
self.swap_with_parent()
def swap_with_parent(self):
self.print_error("swap", self.checkpoint, self.parent.checkpoint)