Correct formatting in expiredblocks
This commit is contained in:
		
							parent
							
								
									0938bf0692
								
							
						
					
					
						commit
						ce0e60c4ea
					
				
					 1 changed files with 4 additions and 3 deletions
				
			
		|  | @ -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 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue