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
pip show boa: 0.2.5 vyper --version: 0.4.0+commit.e9db8d9 python --version: 3.11.10
pip show boa
vyper --version
python --version
import boa def test(): code = """ h: HashMap[uint256, uint256] @external def foo(): self.h[100000000] = 999 self.h[64] = 2000 """ c = boa.loads(code) c.foo() print(c._storage.dump()) test()
output:
<storage: h={}>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
pip show boa
: 0.2.5vyper --version
: 0.4.0+commit.e9db8d9python --version
: 3.11.10output:
The text was updated successfully, but these errors were encountered: