Renamed files and replaced occurencies of 'Stoppable' to 'Pausable'

This commit is contained in:
João Gabriel Carvalho
2017-01-30 23:30:43 -02:00
parent 26127ee36a
commit ae73f1a564
6 changed files with 60 additions and 60 deletions

View File

@ -5,11 +5,11 @@ import "../ownership/Ownable.sol";
/*
* Stoppable
* Pausable
* Abstract contract that allows children to implement an
* emergency stop mechanism.
*/
contract Stoppable is Ownable {
contract Pausable is Ownable {
bool public stopped;
modifier stopInEmergency { if (!stopped) _; }