WA-521 When data is null do not store in redux null

This commit is contained in:
apanizo 2018-08-17 17:54:31 +02:00
parent 1781462142
commit f397bb9388
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ const buildTransactionFrom = (safeAddress: string, tx: TxServiceModel, safeSubje
value: tx.value, value: tx.value,
confirmations, confirmations,
destination: tx.to, destination: tx.to,
data: `0x${tx.data}`, data: `0x${tx.data || ''}`,
isExecuted: tx.isExecuted, isExecuted: tx.isExecuted,
}) })
} }