Updated on 2026-08-14

This commit is contained in:
Tangem 2024-11-20 10:31:02 +05:00
parent 7d864a96e4
commit af74eec364

View file

@ -100,6 +100,14 @@ internal class MockCurrenciesRepository(
return token
}
override suspend fun getMultiCurrencyWalletCurrency(userWalletId: UserWalletId, id: String): CryptoCurrency {
val token = token.getOrElse { e -> throw e }
require(token.id.value == id)
return token
}
override suspend fun getNetworkCoin(
userWalletId: UserWalletId,
networkId: Network.ID,