Merge pull request #5618 from mempool/nymkappa/fix-pool-blocks-page-length

[mining] return 100 blocks per page instead of 10 for pool block list
This commit is contained in:
wiz
2024-10-30 19:10:37 +09:00
committed by GitHub

View File

@@ -501,7 +501,7 @@ class BlocksRepository {
}
query += ` ORDER BY height DESC
LIMIT 10`;
LIMIT 100`;
try {
const [rows]: any[] = await DB.query(query, params);