Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-17 09:38:36 +02:00
parent 63e7f40fd2
commit 7393bce872
5 changed files with 10 additions and 6 deletions

View file

@ -36,7 +36,9 @@ data class MobileWallet(
if (!publicKey.contentEquals(other.publicKey)) return false
if (chainCode != null) {
if (other.chainCode == null || !chainCode.contentEquals(other.chainCode)) return false
} else if (other.chainCode != null) return false
} else if (other.chainCode != null) {
return false
}
if (curve != other.curve) return false
if (derivedKeys != other.derivedKeys) return false

View file

@ -217,7 +217,9 @@ data class CardDTO(
if (signature != null) {
if (other.signature == null) return false
if (!signature.contentEquals(other.signature)) return false
} else if (other.signature != null) return false
} else if (other.signature != null) {
return false
}
return true
}

View file

@ -26,8 +26,8 @@ sealed class CommonManageTokensAnalyticEvents(
event = "Token Searched",
params = buildMap {
put(CHOSEN_TOKEN, if (isTokenChosen) "Yes" else "No")
if (token != null) { put(TOKEN_PARAM, token) }
if (blockchain != null) { put(BLOCKCHAIN, blockchain) }
if (token != null) put(TOKEN_PARAM, token)
if (blockchain != null) put(BLOCKCHAIN, blockchain)
},
)
}

View file

@ -600,7 +600,7 @@ internal class SwapAmountModel @Inject constructor(
return
}
if (!isSilentReload) { uiState.transformerUpdate(SwapQuoteLoadingStateTransformer) }
if (!isSilentReload) uiState.transformerUpdate(SwapQuoteLoadingStateTransformer)
modelScope.launch {
val quotes = state.swapCurrencies.getGroupWithDirection(state.swapDirection).available.filter {

@ -1 +1 @@
Subproject commit 193db8a0247a1f33574dcdd5f9ec4dab2c28ea73
Subproject commit 005d624edbb899bb8fae1c9444ea34b6eac86603