From 788fea25f281dd4b11dbdb1f16e598ad886a6888 Mon Sep 17 00:00:00 2001 From: dev0tion Date: Fri, 20 Nov 2020 11:29:29 +0100 Subject: [PATCH] Show correct confirmations --- StratisCore.UI/src/app/wallet/send/send.component.html | 3 +-- StratisCore.UI/src/app/wallet/send/send.component.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/StratisCore.UI/src/app/wallet/send/send.component.html b/StratisCore.UI/src/app/wallet/send/send.component.html index 64c4e7a5..7c70eeab 100644 --- a/StratisCore.UI/src/app/wallet/send/send.component.html +++ b/StratisCore.UI/src/app/wallet/send/send.component.html @@ -148,8 +148,7 @@
-
An additional amount of {{ opReturnAmount | coinNotation }} {{ coinUnit }} will be used to send this transaction.
-
{{ confirmationText }}
+
diff --git a/StratisCore.UI/src/app/wallet/send/send.component.ts b/StratisCore.UI/src/app/wallet/send/send.component.ts index cc95f6c0..2339c5ea 100644 --- a/StratisCore.UI/src/app/wallet/send/send.component.ts +++ b/StratisCore.UI/src/app/wallet/send/send.component.ts @@ -110,7 +110,7 @@ export class SendComponent implements OnInit, OnDestroy { } this.confirmationText = this.sidechainEnabled - ? 'Please note that sending from a sidechain to the mainchain requires 240 confirmations.' + ? "Amounts less than 50 Cirrus clear in 25 confirmations
Amounts between 50 and 1000 Cirrus clear in 80 confirmations
Amounts more than 1000 Cirrus clear in 500 confirmations" : 'Please note that sending from the mainchain to a sidechain requires 500 confirmations.'; }