Message improvement when below minimum

This commit is contained in:
Thauan Amorim 2025-07-16 08:03:57 -03:00
parent 5549639a70
commit 4239c02aff

View file

@ -952,7 +952,7 @@ public class SendController extends WalletFormController implements Initializabl
Double minFeeRate = targetBlocksFeeRates.get(Integer.MAX_VALUE);
if(feeRateAmt > 0.01 && feeRateAmt < minFeeRate) {
feeRatePriority.setText("Below Minimum");
feeRatePriority.setTooltip(new Tooltip("Transactions at this fee rate can be purged from the default sized mempool"));
feeRatePriority.setTooltip(new Tooltip("Transactions at this fee rate can be purged from mempool"));
feeRatePriorityGlyph.setStyle("-fx-text-fill: #a0a1a7cc");
feeRatePriorityGlyph.setIcon(FontAwesome5.Glyph.EXCLAMATION_CIRCLE);
return;