-
-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
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
Replacing custom interface with stock openzeppelin IERC721.sol #5376
Conversation
Tests are really not happy right now ;) |
Huh. maybe something going on with solium... indentation looks fine to me. Will see if I can make it happy again. |
Note that both the tests AND lint are failing. |
yeah, will look into this. The tests passed locally, will see if I can repro and sort it out. |
2e02d3c
to
2ed3a32
Compare
This can be closed, right? Was replaced by another PR - re-open if I missed something. |
Reopening as I have this working locally now. |
Sorry about that, at a glance I thought #5383 replaced this. Let me know once it's ready for review |
2ed3a32
to
4ae4a53
Compare
@NickCuso When you have time could you give this a look over? thx |
Ha! well, that didn't work. |
heh yea didn't mean to complicate things :) i don't feel strongly either way if you want to revert to what you had |
This reverts commit a649c3d.
I will revert the last commit which switched from internal to private. I think the rest should be good. |
This reverts commit 4d61112.
ok, reverted to my earlier PR. |
@NickCuso If you're ok with the approach, I'd like to merge this. We can certainly look at further tweaks later, but right now the small changes discussed above break so many tests, I'm not sure the value is there in pursuing them atm. |
Description
As per the title.
IPublicLock.sol
to abstract prevent compilation errorsexternal
topublic
to prevent compilation errorsownerOf
andtotalSupply
) and changed existing toownerOf
and_totalSupply
tp prevent duplicate declaration error.function ownerOf
based on the openzeppelin implementation of the same function.Issues
Fixes #
Refs #
Checklist: