Added harness for ERC1155Burnable

This commit is contained in:
Thomas Adams
2022-05-23 09:32:50 -07:00
parent 46cb74f3cf
commit 7a2b502b9c

View File

@ -0,0 +1,8 @@
import "../../munged/token/ERC1155/extensions/ERC1155Burnable.sol";
contract ERC1155BurnableHarness is ERC1155Burnable {
constructor(string memory uri_)
ERC1155(uri_)
{}
}