mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 20:09:23 +00:00
firo mint notification description
This commit is contained in:
parent
5e601d4732
commit
b4b9e09a0e
1 changed files with 5 additions and 2 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue