Skip to content

Commit

Permalink
nph
Browse files Browse the repository at this point in the history
  • Loading branch information
arnetheduck committed Jan 7, 2025
1 parent f458032 commit e6fd0b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/modules/main/wallet_section/send/module.nim
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@ method onTransactionSigned*(
)
self.clearTmpData()
return

self.tmpSendTransactionDetails.resolvedSignatures[
self.tmpSendTransactionDetails.txHashBeingProcessed
] =
Expand Down
1 change: 1 addition & 0 deletions src/app/modules/main/wallet_section/send_new/module.nim
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ method onTransactionSigned*(
)
self.clearTmpData()
return

self.tmpSendTransactionDetails.resolvedSignatures[
self.tmpSendTransactionDetails.txHashBeingProcessed
] =
Expand Down
2 changes: 2 additions & 0 deletions src/app_service/service/community_tokens/service.nim
Original file line number Diff line number Diff line change
Expand Up @@ -1634,12 +1634,14 @@ QtObject:
let suggestedFees =
self.tempFeeTable[collectibleAndAmount.communityToken.chainId]
let ethValue = self.computeEthValue(gasUnits, suggestedFees)

wholeEthCostForChainWallet[
(collectibleAndAmount.communityToken.chainId, addressFrom)
] =
wholeEthCostForChainWallet.getOrDefault(
(collectibleAndAmount.communityToken.chainId, addressFrom), 0.0
) + ethValue

ethValuesForContracts[
(
collectibleAndAmount.communityToken.chainId,
Expand Down

0 comments on commit e6fd0b4

Please sign in to comment.