Browse Source

Fix typo (contributed by gabriel-samfira)

patch-2
Neil Booth 6 years ago
parent
commit
4ae6af6959
  1. 2
      server/db.py

2
server/db.py

@ -227,7 +227,7 @@ class DB(object):
headers_concat, headers_count = self.read_headers(height, count)
if headers_count != count:
raise self.DBError('only got {:,d} headers starting at {:,d}, not '
'{:,d}'.format(headers_count, start, count))
'{:,d}'.format(headers_count, height, count))
offset = 0
headers = []
for n in range(count):

Loading…
Cancel
Save