Skip to content

Commit

Permalink
🐛 Fix wake/sake/getAbiWithProxy proxy ABI
Browse files Browse the repository at this point in the history
  • Loading branch information
michprev committed Jan 15, 2025
1 parent 1033977 commit f73f81c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wake/lsp/sake.py
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ def info_from_address(address: str) -> Tuple[str, List]:
logic_contract = get_logic_contract(contract)
name, abi = info_from_address(str(logic_contract.address))

if contract != logic_contract:
if contract == logic_contract:
return SakeGetAbiWithProxyResult(
success=True,
name=name,
Expand Down

0 comments on commit f73f81c

Please sign in to comment.