File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
common/src/main/java/org/dash/wallet/common/ui/enter_amount Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -203,10 +203,8 @@ class EnterAmountFragment : Fragment(R.layout.fragment_enter_amount) {
203
203
if (binding.amountView.dashToFiat) {
204
204
binding.amountView.input = viewModel.amount.value?.toPlainString() ? : Coin .ZERO .toPlainString()
205
205
} else {
206
- // viewModel.selectedExchangeRate.value?.let {
207
- // val rate = ExchangeRate(it.fiat)
208
- binding.amountView.input = viewModel.fiatAmount.value?.toPlainString() ? : Fiat .valueOf(viewModel.selectedCurrencyCode, 0 ).toPlainString()
209
- // }
206
+ binding.amountView.input = viewModel.fiatAmount.value?.toPlainString()
207
+ ? : Fiat .valueOf(viewModel.selectedCurrencyCode, 0 ).toPlainString()
210
208
}
211
209
}
212
210
You can’t perform that action at this time.
0 commit comments