Support Liquid 0.1 sat/vB fees on blocks.

This commit is contained in:
softsimon
2021-08-07 04:24:46 +03:00
parent 0f390e65a4
commit c6b1979391
4 changed files with 12 additions and 4 deletions

View File

@@ -31,6 +31,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
arrowVisible = false;
tabHidden = false;
loadingMempoolBlocks = true;
feeRounding = '1.0-0';
rightPosition = 0;
transition = '2s';
@@ -49,6 +50,9 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
) { }
ngOnInit() {
if (this.stateService.network === 'liquid') {
this.feeRounding = '1.0-1';
}
this.mempoolBlocks.map(() => {
this.updateMempoolBlockStyles();
this.calculateTransactionPosition();