Skip to content

Commit

Permalink
docs: symbol raw call input size
Browse files Browse the repository at this point in the history
(cherry picked from commit f622917)
  • Loading branch information
ethzoomer authored and pedrovalido committed Oct 14, 2024
1 parent e479856 commit 804c233
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions contracts/LpSugar.vy
Original file line number Diff line number Diff line change
Expand Up @@ -1426,6 +1426,7 @@ def _safe_symbol(_token: address) -> String[100]:
@param _token The token to call
"""
success: bool = False
# >=192 input size is required by Vyper's _abi_decode()
response: Bytes[192] = b""
success, response = raw_call(
_token,
Expand Down

0 comments on commit 804c233

Please sign in to comment.