Co-authored-by: Ernesto García <ernestognw@gmail.com>
@@ -0,0 +1,5 @@
+---
+"openzeppelin-solidity": minor
+
+`Pausable`: Stop explicitly setting `paused` to `false` during construction.
@@ -37,13 +37,6 @@ abstract contract Pausable is Context {
*/
error ExpectedPause();
- /**
- * @dev Initializes the contract in unpaused state.
- */
- constructor() {
- _paused = false;
- }
-
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*