mirror of
https://github.com/mempool/mempool.git
synced 2025-01-19 05:34:03 +01:00
Update data length limit in fees bar chart to 10k blocks at once
This commit is contained in:
parent
d0cba30543
commit
f16afe20be
@ -706,7 +706,7 @@ class BlocksRepository {
|
||||
if (height !== null) {
|
||||
query += ` WHERE blocks.height <= ${height}`;
|
||||
}
|
||||
query += ` ORDER BY blocks.height DESC LIMIT 20000`;
|
||||
query += ` ORDER BY blocks.height DESC LIMIT 10000`;
|
||||
|
||||
const [rows]: any = await DB.query(query);
|
||||
|
||||
|
@ -47,7 +47,7 @@ export class BlockFeesSubsidyGraphComponent implements OnInit {
|
||||
chartInstance: any = undefined;
|
||||
showFiat = false;
|
||||
dropdownOptions = [];
|
||||
step = 20000;
|
||||
step = 10000;
|
||||
includeAccelerations = false;
|
||||
|
||||
constructor(
|
||||
|
Loading…
Reference in New Issue
Block a user