Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-15 12:50:39 +04:00
parent da309aadfa
commit 0eec777144
4 changed files with 8 additions and 4 deletions

View file

@ -122,6 +122,10 @@ internal class NetworkStatusFactory {
Address.Type.Secondary -> NetworkAddress.Address.Type.Secondary
}
if (address.value.isBlank()) {
Timber.w("Address value is blank")
}
return NetworkAddress.Address(address.value, type)
}
}