mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-04-08 03:48:23 +02:00
default to mempool size fee rates selection if not configured
This commit is contained in:
parent
11e46155a1
commit
ffbf4bb0db
@ -272,7 +272,7 @@ public class SendController extends WalletFormController implements Initializabl
|
||||
}
|
||||
|
||||
FeeRatesSelection feeRatesSelection = Config.get().getFeeRatesSelection();
|
||||
feeRatesSelection = (feeRatesSelection == null ? FeeRatesSelection.BLOCK_TARGET : feeRatesSelection);
|
||||
feeRatesSelection = (feeRatesSelection == null ? FeeRatesSelection.MEMPOOL_SIZE : feeRatesSelection);
|
||||
setDefaultFeeRate();
|
||||
updateFeeRateSelection(feeRatesSelection);
|
||||
feeSelectionToggleGroup.selectToggle(feeRatesSelection == FeeRatesSelection.BLOCK_TARGET ? targetBlocksToggle : mempoolSizeToggle);
|
||||
|
Loading…
x
Reference in New Issue
Block a user