From b4b9e09a0e3c7796fef0bb9b9d124ebcc5ed75e4 Mon Sep 17 00:00:00 2001 From: julian Date: Sat, 15 Oct 2022 11:57:00 -0600 Subject: [PATCH] firo mint notification description --- lib/services/coins/firo/firo_wallet.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/services/coins/firo/firo_wallet.dart b/lib/services/coins/firo/firo_wallet.dart index 3a925f015..af3d93445 100644 --- a/lib/services/coins/firo/firo_wallet.dart +++ b/lib/services/coins/firo/firo_wallet.dart @@ -2040,7 +2040,8 @@ class FiroWallet extends CoinServiceAPI { case "Sent": unawaited( NotificationApi.showNotification( - title: "Outgoing transaction", + title: + tx.subType == "mint" ? "Anonymizing" : "Outgoing transaction", body: walletName, walletId: walletId, iconAssetName: Assets.svg.iconFor(coin: coin), @@ -2076,7 +2077,9 @@ class FiroWallet extends CoinServiceAPI { } else if (tx.txType == "Sent" && tx.subType == "join") { unawaited( NotificationApi.showNotification( - title: "Outgoing transaction confirmed", + title: tx.subType == "mint" + ? "Anonymized" + : "Outgoing transaction confirmed", body: walletName, walletId: walletId, iconAssetName: Assets.svg.iconFor(coin: coin),