We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
vyper --version
python --version
> cat bug1.vy @external def foo(x: uint256 = 3): pass
> vyper -f external_interface bug1.vy # External Interfaces interface Bug1: def foo(x: uint256): nonpayable
If you use the interface produced directly, you cannot call Bug1.foo(). But it works if you import bug1 as Bug1.
Bug1.foo()
import bug1 as Bug1
The text was updated successfully, but these errors were encountered:
probably related #3170
Sorry, something went wrong.
No branches or pull requests
Version Information
vyper --version
): 0.3.8+commit.8ebabc5cpython --version
): Python 3.10.9What's your issue about?
If you use the interface produced directly, you cannot call
Bug1.foo()
. But it works if youimport bug1 as Bug1
.The text was updated successfully, but these errors were encountered: