Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: type check abi_decode arguments #3623

Merged
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions vyper/builtins/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2490,6 +2490,8 @@ def fetch_call_return(self, node):
return output_type.typedef

def infer_arg_types(self, node):
self._validate_arg_types(node)

validate_call_args(node, 2, ["unwrap_tuple"])

data_type = get_exact_type_from_node(node.args[0])
Expand Down
Loading