Updated on 2026-08-14
This commit is contained in:
parent
e16020ec34
commit
bc1b6fecbc
1 changed files with 3 additions and 3 deletions
|
|
@ -137,7 +137,7 @@ internal class ManagedCryptoCurrencyFactory {
|
|||
createSource(
|
||||
networkId = network.networkId,
|
||||
contractAddress = network.contractAddress,
|
||||
decimals = network.decimalCount?.toInt() ?: return@mapNotNull null,
|
||||
decimals = network.decimalCount?.toInt(),
|
||||
derivationStyleProvider = derivationStyleProvider,
|
||||
)
|
||||
},
|
||||
|
|
@ -148,7 +148,7 @@ internal class ManagedCryptoCurrencyFactory {
|
|||
private fun createSource(
|
||||
networkId: String,
|
||||
contractAddress: String?,
|
||||
decimals: Int,
|
||||
decimals: Int?,
|
||||
derivationStyleProvider: DerivationStyleProvider?,
|
||||
extraDerivationPath: String? = null,
|
||||
): SourceNetwork? {
|
||||
|
|
@ -167,7 +167,7 @@ internal class ManagedCryptoCurrencyFactory {
|
|||
} else {
|
||||
SourceNetwork.Default(
|
||||
network = network,
|
||||
decimals = decimals,
|
||||
decimals = decimals ?: return null,
|
||||
contractAddress = contractAddress,
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue