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:
@ -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.
|
||||
|
||||
Reference in New Issue
Block a user