We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d63fb90 commit 1af1c01Copy full SHA for 1af1c01
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- fixed: Fixed `saveTx` regression. Transaction sends are properly saved.
6
+
7
## 1.4.0 (2025-03-25)
8
9
- fixed: Remove race condition causing missing transaction between showing address and initial login.
src/MoneroEngine.ts
@@ -746,7 +746,7 @@ export class MoneroEngine implements EdgeCurrencyEngine {
746
}
747
748
async saveTx(edgeTransaction: EdgeTransaction): Promise<void> {
749
- await this.addTransaction(edgeTransaction.currencyCode, edgeTransaction)
+ await this.addTransaction(edgeTransaction.tokenId, edgeTransaction)
750
751
752
getDisplayPrivateSeed(privateKeys: JsonObject): string {
0 commit comments