Fix error 500 when querying /blocks using "INDEXING_BLOCKS_AMOUNT": 0

This commit is contained in:
nymkappa 2022-12-16 17:43:37 +01:00
parent f18ea6a7a3
commit db4bf52596
No known key found for this signature in database
GPG key ID: E155910B16E8BD04

View file

@ -677,7 +677,7 @@ class Blocks {
}
public async $getBlocks(fromHeight?: number, limit: number = 15): Promise<BlockExtended[]> {
let currentHeight = fromHeight !== undefined ? fromHeight : await blocksRepository.$mostRecentBlockHeight();
let currentHeight = fromHeight !== undefined ? fromHeight : this.currentBlockHeight;
const returnBlocks: BlockExtended[] = [];
if (currentHeight < 0) {