Skip to content

Commit

Permalink
Merge pull request #42 from Clixlogix-PrashantS/transaction-type-props
Browse files Browse the repository at this point in the history
fix : #19: changed the props name
  • Loading branch information
robcxyz authored Jul 14, 2022
2 parents b1260d4 + 1e71dc0 commit 301da4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CommonPage/TxPage/TxTableBody.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class TxTableBody extends Component {
<TxHashCell isError={isError} txHash={data.hash} />
<BlockCell height={data.block_number} />
<DateCell date={data.block_timestamp} />
<AddressSet fromAddr={data.from_address} toAddr={data.to_address} address={address} txType={data.type} targetContractAddr={address} />
<AddressSet fromAddr={data.from_address} toAddr={data.to_address} address={address} txType={data.transaction_type} targetContractAddr={address} />
<AmountCell amount={convertHexToValue(data.value)} symbol="ICX" />
<AmountCell amount={convertHexToValue(data.transaction_fee)} symbol="ICX" />
</tr>
Expand Down

0 comments on commit 301da4c

Please sign in to comment.