Skip to content

Commit

Permalink
fix: linter autofix restored
Browse files Browse the repository at this point in the history
  • Loading branch information
tabaktoni committed Oct 13, 2022
1 parent f3d2969 commit 07d28f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils/responseParser/sequencer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ export class SequencerAPIResponseParser extends ResponseParser {
...('transaction_index' in res && { transaction_index: res.transaction_index }),
...('execution_resources' in res && { execution_resources: res.execution_resources }),
...('l1_to_l2_consumed_message' in res && {
l1_to_l2_consumed_message: res.l1_to_l2_consumed_message,
// eslint-disable-next-line @typescript-eslint/dot-notation
l1_to_l2_consumed_message: res['l1_to_l2_consumed_message'],
}),
...('transaction_failure_reason' in res && {
transaction_failure_reason: res.transaction_failure_reason,
Expand Down

0 comments on commit 07d28f6

Please sign in to comment.