Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
fix: change fee estimate multiple to 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hstove committed Dec 11, 2020
1 parent 2b9c9d6 commit 371611d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/aggregators/fee-estimate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class FeeEstimator extends Aggregator<number> {
});
return {
shouldCacheValue: true,
value: Math.ceil(fastestFee * 1.25),
value: Math.ceil(fastestFee * 1.5),
};
}

Expand Down

0 comments on commit 371611d

Please sign in to comment.