Skip to content

Commit

Permalink
Merge pull request #885 from EdgeApp/matthew/sui-resync
Browse files Browse the repository at this point in the history
Fix Map handling in `processTransaction`
  • Loading branch information
peachbits authored Jan 23, 2025
2 parents 840408c + 7795493 commit d31884f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- changed: (Solana) Only query transaction blocktime if it isn't already present
- fixed: (Solana) Fix checking token send amount against rent threshold
- fixed: (Solana) Fix recent txid stored for efficient tx query
- fixed: (Sui) Fix Map handling in `processTransaction`
- removed: (Solana) Remove blockheight loop

## 4.35.0 (2025-01-15)
Expand Down
2 changes: 1 addition & 1 deletion src/sui/SuiEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class SuiEngine extends CurrencyEngine<SuiTools, SafeCommonWalletInfo> {
}
}

for (const [coinType, bal] of Object.entries(coinTypeMap)) {
for (const [coinType, bal] of coinTypeMap) {
let tokenId = null
let currencyCode = this.currencyInfo.currencyCode
let nativeAmount = bal
Expand Down

0 comments on commit d31884f

Please sign in to comment.