mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-08-03 18:23:09 +02:00
minor bug fix
This commit is contained in:
@@ -454,8 +454,8 @@ public class SendController extends WalletFormController implements Initializabl
|
||||
updateTransaction(true);
|
||||
}
|
||||
|
||||
private void setFiatAmount(CurrencyRate currencyRate, long amount) {
|
||||
if(currencyRate != null && currencyRate.isAvailable()) {
|
||||
private void setFiatAmount(CurrencyRate currencyRate, Long amount) {
|
||||
if(amount != null && currencyRate != null && currencyRate.isAvailable()) {
|
||||
fiatAmount.set(currencyRate, amount);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user