Skip to content

Commit 1af1c01

Browse files
committed
Fix saveTx
It's obvious what's wrong here.
1 parent d63fb90 commit 1af1c01

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+
- fixed: Fixed `saveTx` regression. Transaction sends are properly saved.
6+
57
## 1.4.0 (2025-03-25)
68

79
- fixed: Remove race condition causing missing transaction between showing address and initial login.

src/MoneroEngine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ export class MoneroEngine implements EdgeCurrencyEngine {
746746
}
747747

748748
async saveTx(edgeTransaction: EdgeTransaction): Promise<void> {
749-
await this.addTransaction(edgeTransaction.currencyCode, edgeTransaction)
749+
await this.addTransaction(edgeTransaction.tokenId, edgeTransaction)
750750
}
751751

752752
getDisplayPrivateSeed(privateKeys: JsonObject): string {

0 commit comments

Comments
 (0)