mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 13:14:32 +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":
|
case "Sent":
|
||||||
unawaited(
|
unawaited(
|
||||||
NotificationApi.showNotification(
|
NotificationApi.showNotification(
|
||||||
title: "Outgoing transaction",
|
title:
|
||||||
|
tx.subType == "mint" ? "Anonymizing" : "Outgoing transaction",
|
||||||
body: walletName,
|
body: walletName,
|
||||||
walletId: walletId,
|
walletId: walletId,
|
||||||
iconAssetName: Assets.svg.iconFor(coin: coin),
|
iconAssetName: Assets.svg.iconFor(coin: coin),
|
||||||
|
@ -2076,7 +2077,9 @@ class FiroWallet extends CoinServiceAPI {
|
||||||
} else if (tx.txType == "Sent" && tx.subType == "join") {
|
} else if (tx.txType == "Sent" && tx.subType == "join") {
|
||||||
unawaited(
|
unawaited(
|
||||||
NotificationApi.showNotification(
|
NotificationApi.showNotification(
|
||||||
title: "Outgoing transaction confirmed",
|
title: tx.subType == "mint"
|
||||||
|
? "Anonymized"
|
||||||
|
: "Outgoing transaction confirmed",
|
||||||
body: walletName,
|
body: walletName,
|
||||||
walletId: walletId,
|
walletId: walletId,
|
||||||
iconAssetName: Assets.svg.iconFor(coin: coin),
|
iconAssetName: Assets.svg.iconFor(coin: coin),
|
||||||
|
|
Loading…
Reference in a new issue