mirror of
https://github.com/mempool/mempool.git
synced 2026-08-19 13:18:06 +02:00
bugfix: vbytespersecond display was limited to 1667
This commit is contained in:
parent
147de195a9
commit
80fc3df76d
1 changed files with 3 additions and 8 deletions
|
|
@ -25,6 +25,7 @@ interface MempoolInfoData {
|
|||
export class FooterComponent implements OnInit {
|
||||
mempoolBlocksData$: Observable<MempoolBlocksData>;
|
||||
mempoolInfoData$: Observable<MempoolInfoData>;
|
||||
vBytesPerSecondLimit = 1667;
|
||||
|
||||
constructor(
|
||||
private stateService: StateService,
|
||||
|
|
@ -37,13 +38,7 @@ export class FooterComponent implements OnInit {
|
|||
])
|
||||
.pipe(
|
||||
map(([mempoolInfo, vbytesPerSecond]) => {
|
||||
const vBytesPerSecondLimit = 1667;
|
||||
let vBytesPerSecond = vbytesPerSecond;
|
||||
if (vBytesPerSecond > 1667) {
|
||||
vBytesPerSecond = 1667;
|
||||
}
|
||||
|
||||
const percent = Math.round((vBytesPerSecond / vBytesPerSecondLimit) * 100);
|
||||
const percent = Math.round((Math.min(vbytesPerSecond, this.vBytesPerSecondLimit) / this.vBytesPerSecondLimit) * 100);
|
||||
|
||||
let progressClass = 'bg-danger';
|
||||
if (percent <= 75) {
|
||||
|
|
@ -54,7 +49,7 @@ export class FooterComponent implements OnInit {
|
|||
|
||||
return {
|
||||
memPoolInfo: mempoolInfo,
|
||||
vBytesPerSecond: vBytesPerSecond,
|
||||
vBytesPerSecond: vbytesPerSecond,
|
||||
progressWidth: percent + '%',
|
||||
progressClass: progressClass,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue