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
commit 216bd5ad23
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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