Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethanncnm committed Jun 27, 2023
1 parent 284d037 commit eda269e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l2geth/contracts/checkpointoracle/contract/oracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract CheckpointOracle {
*/
constructor(address[] memory _adminlist, uint _sectionSize, uint _processConfirms, uint _threshold) public {
for (uint i = 0; i < _adminlist.length; i++) {
require(_adminlist[i] != address(0),"admin list cant contains 0 address");
require(_adminlist[i] != address(0),"admin list can't contain 0 address");
admins[_adminlist[i]] = true;
adminList.push(_adminlist[i]);
}
Expand Down

0 comments on commit eda269e

Please sign in to comment.