Updated on 2026-08-14

This commit is contained in:
Tangem 2024-05-02 10:25:50 +01:00
commit 8561fa38b1
4 changed files with 6 additions and 8 deletions

View file

@ -223,6 +223,10 @@ object TradeCryptoMiddleware {
}
private fun handleSendCoin(action: TradeCryptoAction.SendCoin) {
if (action.transactionInfo?.tag != null) {
// avoid open old send if memo exists
return
}
val cryptoStatus = action.coinStatus
val currency = cryptoStatus.currency
val blockchain = Blockchain.fromId(currency.network.id.value)