Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
fix: remove nonce from IncomingTx details
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandomg committed Apr 24, 2020
1 parent 9a18d1d commit d45199b
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,12 @@ const ExpandedTx = ({ cancelTx, tx }: Props) => {
<Bold className={classes.txHash}>Hash:</Bold>
{tx.executionTxHash ? <EtherScanLink cut={8} type="tx" value={tx.executionTxHash} /> : 'n/a'}
</Block>
<Paragraph noMargin>
<Bold>Nonce: </Bold>
<Span>{tx.nonce}</Span>
</Paragraph>
{INCOMING_TX_TYPES.includes(tx.type) ? null : (
<Paragraph noMargin>
<Bold>Nonce: </Bold>
<Span>{tx.nonce}</Span>
</Paragraph>
)}
<Paragraph noMargin>
<Bold>Fee: </Bold>
{tx.fee ? tx.fee : 'n/a'}
Expand Down

0 comments on commit d45199b

Please sign in to comment.