fix get_branch_size

This commit is contained in:
ThomasV 2017-07-19 06:24:53 +02:00
parent 6ee0ad8499
commit afda151bc6
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ class Blockchain(util.PrintError):
def get_branch_size(self):
mc = self.get_max_child()
checkpoint = mc if mc is not None else self.checkpoint
return self.height() - checkpoint
return self.height() - checkpoint + 1
def check_header(self, header):
header_hash = hash_header(header)