Updated on 2026-08-14

This commit is contained in:
Tangem 2023-01-27 15:30:12 +03:00
parent 3ad192c433
commit 93349d80f4
18 changed files with 247 additions and 42 deletions

View file

@ -148,6 +148,10 @@ class TransactionManagerImpl(
}
}
override fun getBlockchainId(networkId: String): String {
return requireNotNull(Blockchain.fromNetworkId(networkId)) { "blockchain not found" }.id
}
private fun handleSendResult(result: SimpleResult): SendTxResult {
when (result) {
is SimpleResult.Success -> return SendTxResult.Success