WA-521 Adapt code to get data with 0x from tx-history-service
This commit is contained in:
parent
db35bf80c3
commit
3d25ae2db1
|
@ -9,6 +9,7 @@ import { loadSafeSubjects } from '~/utils/localStorage/transactions'
|
||||||
import { buildTxServiceUrlFrom, type TxServiceType } from '~/logic/safe/safeTxHistory'
|
import { buildTxServiceUrlFrom, type TxServiceType } from '~/logic/safe/safeTxHistory'
|
||||||
import { enhancedFetch } from '~/utils/fetch'
|
import { enhancedFetch } from '~/utils/fetch'
|
||||||
import { getOwners } from '~/utils/localStorage'
|
import { getOwners } from '~/utils/localStorage'
|
||||||
|
import { EMPTY_DATA } from '~/logic/wallets/ethTransactions'
|
||||||
import addTransactions from './addTransactions'
|
import addTransactions from './addTransactions'
|
||||||
|
|
||||||
type ConfirmationServiceModel = {
|
type ConfirmationServiceModel = {
|
||||||
|
@ -49,7 +50,7 @@ const buildTransactionFrom = (safeAddress: string, tx: TxServiceModel, safeSubje
|
||||||
value: Number(tx.value),
|
value: Number(tx.value),
|
||||||
confirmations,
|
confirmations,
|
||||||
destination: tx.to,
|
destination: tx.to,
|
||||||
data: `0x${tx.data || ''}`,
|
data: tx.data ? tx.data : EMPTY_DATA,
|
||||||
isExecuted: tx.isExecuted,
|
isExecuted: tx.isExecuted,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue