Skip to content

Commit

Permalink
Fix wrong function name (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
kchojn authored Jun 17, 2022
1 parent c87caeb commit 6976ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethtx_ce/app/api/endpoints/semantics.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@response(200)
def read_raw_semantic(address: str, chain_id: Optional[str] = None):
"""Get raw semantic."""
raw_semantics = current_app.ethtx.semantics.get_raw_semantics(
raw_semantics = current_app.ethtx.semantics.get_semantics(
chain_id=chain_id, address=address
)
return raw_semantics.dict()

0 comments on commit 6976ec2

Please sign in to comment.