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
Calling foo() returns (1, 2, 3) instead of [1, 2, 3].
foo()
(1, 2, 3)
[1, 2, 3]
@external def foo() -> uint256[3]: return [1, 2, 3]
>>> boa.loads("@external\ndef foo() -> uint256[3]:\n\treturn [1,2,3]\n") <VyperContract at 0x0000000000000000000000000000000000000067, compiled with vyper-0.3.8+847849c5> >>> a = boa.loads("@external\ndef foo() -> uint256[3]:\n\treturn [1,2,3]\n") >>> a.foo() (1, 2, 3)
The text was updated successfully, but these errors were encountered:
What version of eth-abi is this?
Sorry, something went wrong.
I tried with both 3.0.1 and the master branch.
3.0.1
master
Tracking upstream: ethereum/eth-abi#192
eth_abi
eth_stdlib
please reopen if still an issue
No branches or pull requests
Calling
foo()
returns(1, 2, 3)
instead of[1, 2, 3]
.The text was updated successfully, but these errors were encountered: