Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- fixed: Fixed `saveTx` regression. Transaction sends are properly saved.

## 1.4.0 (2025-03-25)

- fixed: Remove race condition causing missing transaction between showing address and initial login.
Expand Down
2 changes: 1 addition & 1 deletion src/MoneroEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ export class MoneroEngine implements EdgeCurrencyEngine {
}

async saveTx(edgeTransaction: EdgeTransaction): Promise<void> {
await this.addTransaction(edgeTransaction.currencyCode, edgeTransaction)
await this.addTransaction(edgeTransaction.tokenId, edgeTransaction)
}

getDisplayPrivateSeed(privateKeys: JsonObject): string {
Expand Down
Loading