Set reward to 0 by default until reward indexing is available

This commit is contained in:
nymkappa 2022-02-11 19:27:11 +09:00
parent c28f3fd4b6
commit d8e58ee622
No known key found for this signature in database
GPG key ID: E155910B16E8BD04

View file

@ -172,7 +172,7 @@ class BlocksRepository {
startHeight: number | null = null startHeight: number | null = null
): Promise<object[]> { ): Promise<object[]> {
const params: any[] = []; const params: any[] = [];
let query = `SELECT height, hash, tx_count, size, weight, pool_id, UNIX_TIMESTAMP(blockTimestamp) as timestamp, reward let query = `SELECT height, hash, tx_count, size, weight, pool_id, UNIX_TIMESTAMP(blockTimestamp) as timestamp, 0 as reward
FROM blocks FROM blocks
WHERE pool_id = ?`; WHERE pool_id = ?`;
params.push(poolId); params.push(poolId);