mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
Merge pull request #137 from cypherstack/ui-fixes
firo mint notification description
This commit is contained in:
commit
9df7894142
1 changed files with 5 additions and 2 deletions
|
@ -2041,7 +2041,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),
|
||||
|
@ -2077,7 +2078,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