mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 21:36:45 +00:00
handle no prior connection for fetching min relay fee rate
This commit is contained in:
parent
ac438ec023
commit
2cf653702c
1 changed files with 1 additions and 1 deletions
|
@ -644,7 +644,7 @@ public class AppController implements Initializable {
|
|||
}
|
||||
|
||||
public static Double getMinimumRelayFeeRate() {
|
||||
return minimumRelayFeeRate;
|
||||
return minimumRelayFeeRate == null ? Transaction.DEFAULT_MIN_RELAY_FEE : minimumRelayFeeRate;
|
||||
}
|
||||
|
||||
public static CurrencyRate getFiatCurrencyExchangeRate() {
|
||||
|
|
Loading…
Reference in a new issue