mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 14:42:37 +01:00
Reduce mempool fee suggestion from high to medium priority
This reverts commit 087e160f6b
.
This commit is contained in:
parent
05cc96ec68
commit
938e9b29ab
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("fastestFee"))
|
||||
.filter(p -> p.getKey().equalsIgnoreCase("halfHourFee"))
|
||||
.map(Map.Entry::getValue)
|
||||
.findFirst()
|
||||
.map(r -> Math.max(r, MIN_FEE_RATE))
|
||||
|
|
Loading…
Add table
Reference in a new issue