Updated on 2026-08-14
This commit is contained in:
parent
1d930e2fa5
commit
f9ab1f339b
1 changed files with 2 additions and 2 deletions
|
|
@ -95,7 +95,7 @@ internal class DefaultNFTRepository @Inject constructor(
|
|||
val salePrice = sdkPrice?.let {
|
||||
val convertedPrice = salePriceConverter.convert(sdkPrice)
|
||||
convertedPrice.copy(
|
||||
value = convertedPrice.value.movePointLeft(nftCurrency.decimals),
|
||||
value = convertedPrice.value,
|
||||
decimals = nftCurrency.decimals,
|
||||
symbol = nftCurrency.symbol,
|
||||
)
|
||||
|
|
@ -459,7 +459,7 @@ internal class DefaultNFTRepository @Inject constructor(
|
|||
val nftCurrency = getNFTCurrency(network)
|
||||
NFTSalePrice.Value(
|
||||
assetId = assetId,
|
||||
value = price.value.movePointLeft(nftCurrency.decimals),
|
||||
value = price.value,
|
||||
fiatValue = null,
|
||||
symbol = nftCurrency.symbol,
|
||||
decimals = nftCurrency.decimals,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue