edge-currency-monero 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 1.4.1 (2025-03-28)
6
+
7
+ - fixed: Fixed `saveTx` regression. Transaction sends are properly saved.
8
+
5
9
  ## 1.4.0 (2025-03-25)
6
10
 
7
11
  - fixed: Remove race condition causing missing transaction between showing address and initial login.
@@ -746,7 +746,7 @@ const PRIMARY_CURRENCY_TOKEN_ID = null
746
746
  }
747
747
 
748
748
  async saveTx(edgeTransaction) {
749
- await this.addTransaction(edgeTransaction.currencyCode, edgeTransaction)
749
+ await this.addTransaction(edgeTransaction.tokenId, edgeTransaction)
750
750
  }
751
751
 
752
752
  getDisplayPrivateSeed(privateKeys) {
@@ -3115,7 +3115,7 @@ var MoneroEngine = /*#__PURE__*/function () {
3115
3115
  switch (_context25.prev = _context25.next) {
3116
3116
  case 0:
3117
3117
  _context25.next = 2;
3118
- return this.addTransaction(edgeTransaction.currencyCode, edgeTransaction);
3118
+ return this.addTransaction(edgeTransaction.tokenId, edgeTransaction);
3119
3119
 
3120
3120
  case 2:
3121
3121
  case "end":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edge-currency-monero",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Edge Monero currency plugin",
5
5
  "homepage": "https://edge.app",
6
6
  "repository": {