Skip to content

Commit

Permalink
fix:ts bug workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
tabaktoni committed Sep 23, 2022
1 parent bfc1f70 commit 96630b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/responseParser/sequencer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ 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,
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 96630b3

Please sign in to comment.