You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
436 B
22 lines
436 B
import "../../munged/token/ERC1155/extensions/ERC1155Pausable.sol";
|
|
|
|
contract ERC1155PausableHarness is ERC1155Pausable {
|
|
constructor(string memory uri_)
|
|
ERC1155(uri_)
|
|
{}
|
|
|
|
function pause() public {
|
|
_pause();
|
|
}
|
|
|
|
function unpause() public {
|
|
_unpause();
|
|
}
|
|
|
|
function onlyWhenPausedMethod() public whenPaused {
|
|
}
|
|
|
|
function onlyWhenNotPausedMethod() public whenNotPaused {
|
|
}
|
|
}
|
|
|
|
|