We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 965e2e9 + e3849a3 commit de17ed6Copy full SHA for de17ed6
contracts/libraries/SafeToL2Migration.sol
@@ -115,7 +115,7 @@ contract SafeToL2Migration is SafeStorage {
115
bytes32 newSingletonVersion = keccak256(abi.encodePacked(ISafe(l2Singleton).VERSION()));
116
117
require(oldSingletonVersion == newSingletonVersion, "L2 singleton must match current version singleton");
118
- // There's no way to make sure if address is a valid singleton, unless we cofigure the contract for every chain
+ // There's no way to make sure if address is a valid singleton, unless we configure the contract for every chain
119
require(
120
newSingletonVersion == keccak256(abi.encodePacked("1.3.0")) || newSingletonVersion == keccak256(abi.encodePacked("1.4.1")),
121
"Provided singleton version is not supported"
0 commit comments