Correct formatting in expiredblocks

master
Kevin Froman 2020-08-17 19:03:42 -05:00
parent 0938bf0692
commit ce0e60c4ea
1 changed files with 4 additions and 3 deletions

View File

@ -23,18 +23,19 @@ from etc import onionrvalues
def get_expired_blocks():
"""Return a list of expired blocks"""
"""Return a list of expired blocks."""
conn = sqlite3.connect(
dbfiles.block_meta_db, timeout=onionrvalues.DATABASE_LOCK_TIMEOUT)
c = conn.cursor()
date = int(epoch.get_epoch())
compiled = (date,)
execute = 'SELECT hash FROM hashes WHERE expire <= ? ORDER BY dateReceived;'
execute = 'SELECT hash FROM hashes WHERE ' + \
'expire <= ? ORDER BY dateReceived;'
rows = list()
for row in c.execute(execute, compiled):
for i in row:
rows.append(i)
conn.close()
return rows
return rows