diff --git a/frontend/src/app/components/accelerate-preview/accelerate-fee-graph.component.scss b/frontend/src/app/components/accelerate-preview/accelerate-fee-graph.component.scss index cd48f42fa..396317093 100644 --- a/frontend/src/app/components/accelerate-preview/accelerate-fee-graph.component.scss +++ b/frontend/src/app/components/accelerate-preview/accelerate-fee-graph.component.scss @@ -4,7 +4,7 @@ width: 120px; margin-left: 4em; margin-right: 1.5em; - padding-bottom: 63px; + padding-bottom: 17px; .column { width: 100%; diff --git a/frontend/src/app/components/accelerate-preview/accelerate-preview.component.html b/frontend/src/app/components/accelerate-preview/accelerate-preview.component.html index 436dd138e..003156c76 100644 --- a/frontend/src/app/components/accelerate-preview/accelerate-preview.component.html +++ b/frontend/src/app/components/accelerate-preview/accelerate-preview.component.html @@ -32,56 +32,56 @@
Virtual size | -- | |
- Size in vbytes of this transaction (including unconfirmed ancestors) - | -||
In-band fees | -- {{ estimate.txSummary.effectiveFee | number : '1.0-0' }} sats - | -|
- Fees already paid by this transaction (including unconfirmed ancestors) - | -
Virtual size | ++ | |
+ Size in vbytes of this transaction (including unconfirmed ancestors) + | +||
In-band fees | ++ {{ estimate.txSummary.effectiveFee | number : '1.0-0' }} sats + | +|
+ Fees already paid by this transaction (including unconfirmed ancestors) + | +
Next block market rate |
@@ -123,24 +123,23 @@
|
|
Mempool Acceleratorâ„¢ fees | -||
- Accelerator Service Fee - | -- +{{ estimate.mempoolBaseFee | number }} - | -
- sats
- |
-
Mempool Acceleratorâ„¢ fees | +||
+ Accelerator Service Fee + | ++ +{{ estimate.mempoolBaseFee | number }} + | +
+ sats
+ |
+
Transaction Size Surcharge
@@ -153,13 +152,13 @@
|
||
- Estimated acceleration cost + Estimated acceleration cost ~{{ estimate.targetFeeRate | number : '1.0-0' }} sat/vB |
@@ -171,18 +170,13 @@
|
|
- |
- ||
- Maximum acceleration cost + Maximum acceleration cost | @@ -196,11 +190,6 @@ | |
- |
- ||
+ + | +||
@@ -258,6 +251,4 @@
- Accelerate
-
diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts
index 37c83f008..0348bf50a 100644
--- a/frontend/src/app/components/transaction/transaction.component.ts
+++ b/frontend/src/app/components/transaction/transaction.component.ts
@@ -138,6 +138,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
accelerateCtaType: 'alert' | 'button' = 'button';
acceleratorAvailable: boolean = this.stateService.env.OFFICIAL_MEMPOOL_SPACE && this.stateService.env.ACCELERATOR && this.stateService.network === '';
showAccelerationSummary = false;
+ showAccelerationDetails = false;
scrollIntoAccelPreview = false;
auditEnabled: boolean = this.stateService.env.AUDIT && this.stateService.env.BASE_MODULE === 'mempool' && this.stateService.env.MINING_DASHBOARD === true;
|