mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2026-08-10 08:37:05 +00: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