Non-constructor initialization removed (#1403)

* signing prefix added

* Minor improvement

* Tests changed

* Successfully tested

* Minor improvements

* Minor improvements

* Revert "Dangling commas are now required. (#1359)"

This reverts commit a6889776f4.

* updates

* fixes #1391
This commit is contained in:
Aniket
2018-10-10 18:03:26 +05:30
committed by Nicolás Venturo
parent b0da0fded0
commit da67e435b1
4 changed files with 19 additions and 5 deletions

View File

@ -10,7 +10,11 @@ contract Pausable is PauserRole {
event Paused();
event Unpaused();
bool private _paused = false;
bool private _paused;
constructor() public {
_paused = false;
}
/**
* @return true if the contract is paused, false otherwise.