Skip to content

Commit

Permalink
Merge pull request #4585 from wiz/increase-mempool-fee-estimation-to-…
Browse files Browse the repository at this point in the history
…high-priority

Increase our mempool fee estimation from "medium" to "high" priority
  • Loading branch information
sqrrm authored Oct 2, 2020
2 parents 12628dc + 8e3b727 commit c044cac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ protected FeeRate doGet() {

private long getEstimatedFeeRate() {
return getFeeRatePredictions()
.filter(p -> p.getKey().equalsIgnoreCase("halfHourFee"))
.filter(p -> p.getKey().equalsIgnoreCase("fastestFee"))
.map(Map.Entry::getValue)
.findFirst()
.map(r -> {
Expand Down

0 comments on commit c044cac

Please sign in to comment.