mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
Pricenode: Increase mempool fee suggestion from medium to high priority
This commit is contained in:
parent
568900b79d
commit
087e160f6b
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ abstract class MempoolFeeRateProvider extends FeeRateProvider {
|
|||
private FeeRate getEstimatedFeeRate() {
|
||||
Set<Map.Entry<String, Long>> feeRatePredictions = getFeeRatePredictions();
|
||||
long estimatedFeeRate = feeRatePredictions.stream()
|
||||
.filter(p -> p.getKey().equalsIgnoreCase("halfHourFee"))
|
||||
.filter(p -> p.getKey().equalsIgnoreCase("fastestFee"))
|
||||
.map(Map.Entry::getValue)
|
||||
.findFirst()
|
||||
.map(r -> Math.max(r, MIN_FEE_RATE))
|
||||
|
|
Loading…
Add table
Reference in a new issue