mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 14:50:52 +01:00
Show correct reward in pool stat page
This commit is contained in:
parent
a436d3a173
commit
f381da0f78
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ class BlocksRepository {
|
|||
startHeight: number | null = null
|
||||
): Promise<object[]> {
|
||||
const params: any[] = [];
|
||||
let query = `SELECT height, hash as id, tx_count, size, weight, pool_id, UNIX_TIMESTAMP(blockTimestamp) as timestamp, 0 as reward
|
||||
let query = `SELECT height, hash as id, tx_count, size, weight, pool_id, UNIX_TIMESTAMP(blockTimestamp) as timestamp, reward
|
||||
FROM blocks
|
||||
WHERE pool_id = ?`;
|
||||
params.push(poolId);
|
||||
|
|
Loading…
Add table
Reference in a new issue