Skip to content

Commit

Permalink
fix traces entry_point_type (#72)
Browse files Browse the repository at this point in the history
Co-authored-by: Wizard1209 <[email protected]>
  • Loading branch information
Wizard1209 and Wizard1209 authored Dec 25, 2024
1 parent 6001c63 commit ee6003d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion sqa/starknet/writer/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def append_call(self, tx_trace: WriterCall) -> None:
self.call_type.append(tx_trace.get('call_type'))
self.class_hash.append(tx_trace.get('class_hash'))
self.entry_point_selector.append(tx_trace.get('entry_point_selector'))
self.entry_point_type.append(tx_trace.get('entry'))
self.entry_point_type.append(tx_trace.get('entry_point_type'))
self.revert_reason.append(tx_trace.get('revert_reason'))
self.calldata.append(tx_trace.get('calldata'))
self.result.append(tx_trace.get('result'))
Expand Down
Git LFS file not shown
Git LFS file not shown
2 changes: 1 addition & 1 deletion tests/starknet/fixtures/state_update/result.json
Git LFS file not shown
4 changes: 2 additions & 2 deletions tests/starknet/fixtures/traces/result.json
Git LFS file not shown

0 comments on commit ee6003d

Please sign in to comment.