Skip to content

Commit

Permalink
Revert 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 and addressed the
empty mempool issue as well, we can move Bisq back to using "medium",
since always using "high" would be a bit wasteful at times.
  • Loading branch information
wiz committed Oct 5, 2020
1 parent fd65bcc commit 05afefa
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 05afefa

Please sign in to comment.