Skip to content

Commit

Permalink
Merge pull request #476 from mysteriumnetwork/feature/Change-crypto-t…
Browse files Browse the repository at this point in the history
…o-USDT

Change T to USDT
  • Loading branch information
ArtemHryhorovGeniusee authored Nov 30, 2021
2 parents 22c3d25 + 128f249 commit a4aec77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class CryptoAnimationView @JvmOverloads constructor(
const val ETH = "ETH"
const val LTC = "LTC"
const val DAI = "DAI"
const val T = "T"
const val USDT = "USDT"
const val DOGE = "DOGE"
}

Expand All @@ -43,7 +43,7 @@ class CryptoAnimationView @JvmOverloads constructor(
ETH -> playAnimation(binding.ethAnimation)
LTC -> playAnimation(binding.ltcAnimation)
DAI -> playAnimation(binding.daiAnimation)
T -> playAnimation(binding.tAnimation)
USDT -> playAnimation(binding.tAnimation)
DOGE -> playAnimation(binding.dogeAnimation)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package updated.mysterium.vpn.ui.top.up.crypto

import android.content.Intent
import android.os.Bundle
import android.util.Log
import android.view.View
import network.mysterium.vpn.R
import network.mysterium.vpn.databinding.ActivityTopUpCryptoBinding
Expand Down Expand Up @@ -91,7 +90,7 @@ class TopUpCryptoActivity : BaseActivity() {
CryptoCardItem(CryptoAnimationView.ETH, false, R.raw.eth_animation),
CryptoCardItem(CryptoAnimationView.LTC, true, R.raw.ltc_animation),
CryptoCardItem(CryptoAnimationView.DAI, false, R.raw.dai_animation),
CryptoCardItem(CryptoAnimationView.T, false, R.raw.t_animation),
CryptoCardItem(CryptoAnimationView.USDT, false, R.raw.t_animation),
CryptoCardItem(CryptoAnimationView.DOGE, false, R.raw.doge_animation)
)
}

0 comments on commit a4aec77

Please sign in to comment.