hide mempool count line before start of data
This commit is contained in:
parent
ef5d2606b7
commit
c80201e3db
@ -136,7 +136,7 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
|
||||
}
|
||||
|
||||
generateCountArray(mempoolStats: OptimizedMempoolStats[]) {
|
||||
return mempoolStats.map(stats => [stats.added * 1000, stats.count]);
|
||||
return mempoolStats.filter(stats => stats.count > 0).map(stats => [stats.added * 1000, stats.count]);
|
||||
}
|
||||
|
||||
mountFeeChart() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user