diff --git a/backend/src/repositories/BlocksRepository.ts b/backend/src/repositories/BlocksRepository.ts index ca2377e92..8a667c351 100644 --- a/backend/src/repositories/BlocksRepository.ts +++ b/backend/src/repositories/BlocksRepository.ts @@ -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); diff --git a/frontend/src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts b/frontend/src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts index 8c70b6379..9e3e6e81e 100644 --- a/frontend/src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts +++ b/frontend/src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts @@ -47,7 +47,7 @@ export class BlockFeesSubsidyGraphComponent implements OnInit { chartInstance: any = undefined; showFiat = false; dropdownOptions = []; - step = 20000; + step = 10000; includeAccelerations = false; constructor(