Merge pull request #4597 from wiz/revert-mempool-back-to-medium-prio

Reduce mempool fee estimation back to "medium" priority
This commit is contained in:
Christoph Atteneder 2020-10-06 09:56:03 +02:00 committed by GitHub
commit be0946609e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ abstract class MempoolFeeRateProvider extends FeeRateProvider {
private long getEstimatedFeeRate() {
return getFeeRatePredictions()
.filter(p -> p.getKey().equalsIgnoreCase("fastestFee"))
.filter(p -> p.getKey().equalsIgnoreCase("halfHourFee"))
.map(Map.Entry::getValue)
.findFirst()
.map(r -> {