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
Some unset values come back as explicitly set when saving/reloading:
'abi': [ { 'name': 'approve', 'inputs': [ { 'name': '_spender', 'type': 'address', }, { 'name': '_value', 'type': 'uint256', }, ], 'outputs': [ { 'name': '', 'type': 'bool', }, ], 'stateMutability': 'nonpayable', 'type': 'function', + 'constant': False, + 'payable': False, },
Must use bool | None = None to preserve difference between "set to default value" and "unset"
bool | None = None
The text was updated successfully, but these errors were encountered:
ABI serialization not symmetric #23
e929bd6
f80fa4d
ABI serialization not symmetric #23 (#29)
a43f4f5
ClaireGuerreGiordano
Successfully merging a pull request may close this issue.
Some unset values come back as explicitly set when saving/reloading:
Must use
bool | None = None
to preserve difference between "set to default value" and "unset"The text was updated successfully, but these errors were encountered: