Fix database usage when database is disabled
This commit is contained in:
		
							parent
							
								
									f6800b848a
								
							
						
					
					
						commit
						761edbce9a
					
				| @ -600,9 +600,11 @@ class Blocks { | |||||||
|    * Index a block if it's missing from the database. Returns the block after indexing |    * Index a block if it's missing from the database. Returns the block after indexing | ||||||
|    */ |    */ | ||||||
|   public async $indexBlock(height: number): Promise<BlockExtended> { |   public async $indexBlock(height: number): Promise<BlockExtended> { | ||||||
|     const dbBlock = await blocksRepository.$getBlockByHeight(height); |     if (Common.indexingEnabled()) { | ||||||
|     if (dbBlock != null) { |       const dbBlock = await blocksRepository.$getBlockByHeight(height); | ||||||
|       return prepareBlock(dbBlock); |       if (dbBlock !== null) { | ||||||
|  |         return prepareBlock(dbBlock); | ||||||
|  |       } | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     const blockHash = await bitcoinApi.$getBlockHash(height); |     const blockHash = await bitcoinApi.$getBlockHash(height); | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user