From 7f252f06b70ab9089ae3da64d7c1f731b6811df1 Mon Sep 17 00:00:00 2001 From: natsoni Date: Wed, 7 Aug 2024 11:11:31 +0200 Subject: [PATCH] Hide fee delta on accelerated tx with bidBoost=0 --- .../components/transaction/transaction.component.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index e2d9421d6..ecd00e599 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -609,10 +609,13 @@ {{ tx.fee | number }} sat @if (accelerationInfo?.bidBoost) { +{{ accelerationInfo.bidBoost | number }} sat - } @else if (tx.feeDelta) { + + } @else if (tx.feeDelta && !accelerationInfo) { +{{ tx.feeDelta | number }} sat - } - + + } @else { + + } } @else {