Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
torztomasz committed Jul 24, 2023
1 parent 1fe24eb commit f59a297
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,17 @@ export class L2TransactionController {
}

transaction = this.convertPricesToUSDCents(transaction)
const { id, blockNumber, ...transactionToShow } = transaction

return {
type: 'success',
content: renderRawL2TransactionPage({
context,
transaction: transactionToShow,
transaction: {
transactionId: transaction.transactionId,
stateUpdateId: transaction.stateUpdateId,
originalTransaction: transaction.originalTransaction,
alternativeTransactions: transaction.alternativeTransactions,
},
}),
}
}
Expand Down

0 comments on commit f59a297

Please sign in to comment.