Skip to content

Commit 4832851

Browse files
authored
Merge pull request #99 from EdgeApp/jon/fix/fees
Fix fee level mapping to priority.
2 parents 3d71d55 + 02e2caa commit 4832851

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- changed: Reduce "high" fee level mapping from priority 4 to 3.
6+
57
## 2.0.1 (2025-11-17)
68

79
- fixed: Handle REST responses from monero-lws.

src/MoneroEngine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ export class MoneroEngine implements EdgeCurrencyEngine {
802802

803803
function translateFee(fee?: string): Priority {
804804
if (fee === 'low') return 1
805-
if (fee === 'high') return 4
805+
if (fee === 'high') return 3
806806
return 2
807807
}
808808

0 commit comments

Comments
 (0)