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
"isSupportedContract" is just made up, the correct method name is "supportsInterface"
cc @pazams
The text was updated successfully, but these errors were encountered:
isSupportedContract(contract c) is a made up wrapper and defined to be equal to : c.supportsInterface(interface a) or c.supportsInterface(interface b)
isSupportedContract(contract c)
c.supportsInterface(interface a) or c.supportsInterface(interface b)
Since a and b are hardcoded, it made sense to me to make the wrapper name different.
a
b
Sorry, something went wrong.
How about supportsInterfaces instead? Makes it clearer as to what it is actually doing.
supportsInterfaces
chrisaxiom
No branches or pull requests
"isSupportedContract" is just made up, the correct method name is "supportsInterface"
cc @pazams
The text was updated successfully, but these errors were encountered: