-
Notifications
You must be signed in to change notification settings - Fork 11.9k
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
Separate ERC721Mintable #1365
Separate ERC721Mintable #1365
Conversation
758ae20
to
dc28c9a
Compare
dc28c9a
to
d10add4
Compare
|
||
|
||
/** | ||
* @title ERC721Mintable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should now read ERC721MetadataMintable
@@ -1,13 +1,13 @@ | |||
pragma solidity ^0.4.24; | |||
|
|||
import "./ERC721Full.sol"; | |||
import "./ERC721Metadata.sol"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be ERC721
?
contracts/mocks/ERC721FullMock.sol
Outdated
@@ -2,14 +2,15 @@ pragma solidity ^0.4.24; | |||
|
|||
import "../token/ERC721/ERC721Full.sol"; | |||
import "../token/ERC721/ERC721Mintable.sol"; | |||
import "../token/ERC721/ERC721MetadataMintable.sol"; | |||
import "../token/ERC721/ERC721Burnable.sol"; | |||
|
|||
/** | |||
* @title ERC721Mock |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is now ERC721FullMock
@nventuro I got coverage back up at 100%. There were two tests testing the wrong thing. |
* separate part of ERC721Mintable into ERC721MetadataMintable * remove mint and burn from 721 tests * Fixed linter error. * fix ERC721 mint tests * Minor fixes. (cherry picked from commit 744f567)
We used to have only one
ERC721Mintable
that required to be plugged into anERC721Full
. This change allows making a more minimalERC721
mintable.