@exodus/solana-api 2.5.32 → 2.5.33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "2.5.32",
3
+ "version": "2.5.33",
4
4
  "description": "Exodus internal Solana asset API wrapper",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -44,5 +44,5 @@
44
44
  "devDependencies": {
45
45
  "@exodus/assets-testing": "^1.0.0"
46
46
  },
47
- "gitHead": "6b37a481bbf82a7ff63a453ca66446fbd45fb4a8"
47
+ "gitHead": "a35477168e62cc23a0d047983278b64ef1081a97"
48
48
  }
@@ -124,7 +124,7 @@ export class SolanaMonitor extends BaseMonitor {
124
124
  const txSet = await this.aci.getTxLog({ assetName, walletAccount })
125
125
  const { stale } = this.getUnconfirmed({ txSet, staleTxAge: TX_STALE_AFTER })
126
126
  if (stale.length > 0) {
127
- clearedLogItems[assetName] = _.unionBy(stale, logItemsByAsset[assetName], 'txId')
127
+ clearedLogItems[assetName] = _.unionBy(logItemsByAsset[assetName], stale, 'txId')
128
128
  }
129
129
  }
130
130