Handle stack-of-N-blocks in new fee graph

This commit is contained in:
Mononaut
2023-06-07 13:22:27 -04:00
parent e4f3642082
commit 9f2b98b246
4 changed files with 18 additions and 8 deletions

View File

@@ -54,6 +54,7 @@ export class MempoolBlockComponent implements OnInit, OnDestroy {
const ordinal = this.getOrdinal(mempoolBlocks[this.mempoolBlockIndex]);
this.ordinal$.next(ordinal);
this.seoService.setTitle(ordinal);
mempoolBlocks[this.mempoolBlockIndex].isStack = mempoolBlocks[this.mempoolBlockIndex].blockVSize > this.stateService.blockVSize;
return mempoolBlocks[this.mempoolBlockIndex];
})
);