fix same key

This commit is contained in:
Jonathan Rainville 2018-10-03 16:15:07 -04:00 committed by Pascal Precht
parent 5fcd1e679d
commit e9ec0c019d
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 2 additions and 2 deletions

View File

@ -25,9 +25,9 @@ const ContractLogger = ({contractName, contractLogs}) => (
</Table.Header>
<Table.Body>
{
contractLogs.map((log) => {
contractLogs.map((log, index) => {
return (
<Table.Row key={log.name}>
<Table.Row key={'log-' + index}>
<Table.Col>{`${log.name}.${log.functionName}(${log.paramString})`}</Table.Col>
<Table.Col>{log.transactionHash}</Table.Col>
<Table.Col>{log.gasUsed}</Table.Col>