We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d71d55 + 02e2caa commit 4832851Copy full SHA for 4832851
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- changed: Reduce "high" fee level mapping from priority 4 to 3.
6
+
7
## 2.0.1 (2025-11-17)
8
9
- fixed: Handle REST responses from monero-lws.
src/MoneroEngine.ts
@@ -802,7 +802,7 @@ export class MoneroEngine implements EdgeCurrencyEngine {
802
803
function translateFee(fee?: string): Priority {
804
if (fee === 'low') return 1
805
- if (fee === 'high') return 4
+ if (fee === 'high') return 3
806
return 2
807
}
808
0 commit comments