You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> mytup = abi_decoded_namedtuple_factory(["foo", "_bar", "baz"])
>>> mytup.foo
_tuplegetter(0, 'Alias for field number 0')
>>> mytup._bar
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: type object 'ABIDecodedNamedTuple' has no attribute '_bar'
>>> mytup.baz
_tuplegetter(2, 'Alias for field number 2')
Underscore no longer causes errors but it also doesn't work!
ethereum/web3.py#2799
The text was updated successfully, but these errors were encountered: