1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Fix calculation and display of eth received amounts in swaps (#9546)

* Update txMeta after postTxBalance has been retrieved

* Use gas used from txReceipt to calculate eth received

* Return null from getSwapsTokensReceivedFromTxMeta in tokenSymbol is ETH and txReceipt is missing

* Get latest txMeta before updating it with postTxBalance in case of a swaps tx in confirmTransaction

* Lint fix
This commit is contained in:
Dan J Miller 2020-10-12 07:52:51 -02:30 committed by GitHub
parent 6409caa081
commit dc5edb5431
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 12 deletions

View File

@ -9,7 +9,6 @@ import { ethers } from 'ethers'
import NonceTracker from 'nonce-tracker'
import log from 'loglevel'
import BigNumber from 'bignumber.js'
import { cloneDeep } from 'lodash'
import {
TOKEN_METHOD_APPROVE,
TOKEN_METHOD_TRANSFER,
@ -558,9 +557,9 @@ export default class TransactionController extends EventEmitter {
async confirmTransaction (txId, txReceipt) {
// get the txReceipt before marking the transaction confirmed
// to ensure the receipt is gotten before the ui revives the tx
const initialTxMeta = this.txStateManager.getTx(txId)
const txMeta = this.txStateManager.getTx(txId)
if (!initialTxMeta) {
if (!txMeta) {
return
}
@ -571,20 +570,24 @@ export default class TransactionController extends EventEmitter {
? txReceipt.gasUsed
: txReceipt.gasUsed.toString(16)
initialTxMeta.txReceipt = {
txMeta.txReceipt = {
...txReceipt,
gasUsed,
}
this.txStateManager.setTxStatusConfirmed(txId)
this._markNonceDuplicatesDropped(txId)
this.txStateManager.updateTx(initialTxMeta, 'transactions#confirmTransaction - add txReceipt')
this.txStateManager.updateTx(txMeta, 'transactions#confirmTransaction - add txReceipt')
if (initialTxMeta.transactionCategory === SWAP) {
const txMeta = cloneDeep(initialTxMeta)
if (txMeta.transactionCategory === SWAP) {
const postTxBalance = await this.query.getBalance(txMeta.txParams.from)
txMeta.postTxBalance = postTxBalance.toString(16)
this._trackSwapsMetrics(txMeta)
const latestTxMeta = this.txStateManager.getTx(txId)
latestTxMeta.postTxBalance = postTxBalance.toString(16)
this.txStateManager.updateTx(latestTxMeta, 'transactions#confirmTransaction - add postTxBalance')
this._trackSwapsMetrics(latestTxMeta)
}
} catch (err) {

View File

@ -365,11 +365,12 @@ export function quotesToRenderableData (quotes, gasPrice, conversionRate, curren
}
export function getSwapsTokensReceivedFromTxMeta (tokenSymbol, txMeta, tokenAddress, accountAddress, tokenDecimals) {
const txReceipt = txMeta?.txReceipt
if (tokenSymbol === 'ETH') {
if (!txMeta || !txMeta.postTxBalance || !txMeta.preTxBalance) {
if (!txReceipt || !txMeta || !txMeta.postTxBalance || !txMeta.preTxBalance) {
return null
}
const gasCost = calcGasTotal(txMeta.txParams.gas, txMeta.txParams.gasPrice)
const gasCost = calcGasTotal(txReceipt.gasUsed, txMeta.txParams.gasPrice)
const preTxBalanceLessGasCost = subtractCurrencies(txMeta.preTxBalance, gasCost, {
aBase: 16,
bBase: 16,
@ -385,7 +386,6 @@ export function getSwapsTokensReceivedFromTxMeta (tokenSymbol, txMeta, tokenAddr
})
return ethReceived
}
const txReceipt = txMeta?.txReceipt
const txReceiptLogs = txReceipt?.logs
if (txReceiptLogs && txReceipt?.status !== '0x0') {
const tokenTransferLog = txReceiptLogs.find((txReceiptLog) => {