Fix mempool chart tooltip at dashboard component.

This commit is contained in:
Miguel Medeiros 2021-10-08 15:11:53 -03:00
parent 57b64f64ad
commit e59a318cad
No known key found for this signature in database
GPG Key ID: 819EDEE4673F3EBB
2 changed files with 3 additions and 2 deletions

View File

@ -85,8 +85,8 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
generateArray(mempoolStats: OptimizedMempoolStats[]) {
const finalArray: number[][] = [];
let feesArray: number[] = [];
for (let index = 28; index > -1; index--) {
const limitFeesTemplate = this.template === 'advanced' ? 28 : 21;
for (let index = limitFeesTemplate; index > -1; index--) {
feesArray = [];
mempoolStats.forEach((stats) => {
feesArray.push(stats.vsizes[index] ? stats.vsizes[index] : 0);

View File

@ -51,6 +51,7 @@
<app-mempool-graph
[template]="'widget'"
[limitFee]="150"
[limitFilterFee]="1"
[data]="mempoolStats.mempool"
></app-mempool-graph>
</div>