Skip to content

Commit

Permalink
Use class instead of importing its method
Browse files Browse the repository at this point in the history
  • Loading branch information
abdrasulov committed Dec 4, 2024
1 parent 8881e15 commit 4726f20
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import io.horizontalsystems.bankwallet.modules.transactionInfo.TransactionInfoVi
import io.horizontalsystems.bankwallet.modules.transactionInfo.TransactionInfoViewItem.Status
import io.horizontalsystems.bankwallet.modules.transactionInfo.TransactionInfoViewItem.Value
import io.horizontalsystems.bankwallet.modules.transactionInfo.TransactionViewItemFactoryHelper
import io.horizontalsystems.bankwallet.modules.transactionInfo.TransactionViewItemFactoryHelper.getSwapEventSectionItems
import io.horizontalsystems.bankwallet.modules.transactions.TransactionStatus
import io.horizontalsystems.core.BackgroundManager
import io.horizontalsystems.core.BackgroundManagerState
Expand Down Expand Up @@ -229,7 +228,7 @@ object TonHelper {

is TonTransactionRecord.Action.Type.Swap -> {
itemsForAction.addAll(
getSwapEventSectionItems(
TransactionViewItemFactoryHelper.getSwapEventSectionItems(
valueIn = actionType.valueIn,
valueOut = actionType.valueOut,
rates = rates,
Expand Down

0 comments on commit 4726f20

Please sign in to comment.