Make contracts abstract if they had internal constructors (#2383)

This commit is contained in:
psykeeper
2020-10-20 11:24:46 -04:00
committed by GitHub
parent ec8efd52b4
commit 7650210ad6
5 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ import "../GSN/Context.sol";
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
contract Pausable is Context {
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/