Skip to content

Commit

Permalink
Reduce mempool fee estimation back to "medium" priority
Browse files Browse the repository at this point in the history
Reverts bisq-network#4585, which increased Bisq to always use the
"high" priority fee estimation. Now that we've improved mempool.space
"medium" fee estimates in mempool/mempool@15bb5a96, we can move Bisq
back to using "medium", since always using "high" will be too wasteful
on the weekends when the mempool is empty
  • Loading branch information
wiz committed Oct 5, 2020
1 parent fd65bcc commit 9b1a9de
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("fastestFee"))
.filter(p -> p.getKey().equalsIgnoreCase("halfHourFee"))
.map(Map.Entry::getValue)
.findFirst()
.map(r -> {
Expand Down

0 comments on commit 9b1a9de

Please sign in to comment.