ValidatorManager -> validator manager in comments

pull/334/head
Trevor Porter 3 years ago
parent b5c9070424
commit d4b0cc8dcc
  1. 14
      solidity/core/contracts/Common.sol

@ -43,7 +43,7 @@ abstract contract Common is ICommon, OwnableUpgradeable {
event Checkpoint(bytes32 indexed root, uint256 indexed index); event Checkpoint(bytes32 indexed root, uint256 indexed index);
/** /**
* @notice Emitted when the ValidatorManager contract is changed * @notice Emitted when the validator manager contract is changed
* @param validatorManager The address of the new validatorManager * @param validatorManager The address of the new validatorManager
*/ */
event NewValidatorManager(address validatorManager); event NewValidatorManager(address validatorManager);
@ -51,7 +51,7 @@ abstract contract Common is ICommon, OwnableUpgradeable {
// ============ Modifiers ============ // ============ Modifiers ============
/** /**
* @notice Ensures that a function is called by the ValidatorManager contract. * @notice Ensures that a function is called by the validator manager contract.
*/ */
modifier onlyValidatorManager() { modifier onlyValidatorManager() {
require(msg.sender == validatorManager, "!validatorManager"); require(msg.sender == validatorManager, "!validatorManager");
@ -78,11 +78,11 @@ abstract contract Common is ICommon, OwnableUpgradeable {
// ============ External Functions ============ // ============ External Functions ============
/** /**
* @notice Set a new ValidatorManager contract * @notice Set a new validator manager contract
* @dev Outbox(es) will initially be initialized using a trusted ValidatorManager contract; * @dev Outbox(es) will initially be initialized using a trusted validator manager contract;
* we will progressively decentralize by swapping the trusted contract with a new implementation * we will progressively decentralize by swapping the trusted contract with a new implementation
* that implements Validator bonding & slashing, and rules for Validator selection & rotation * that implements Validator bonding & slashing, and rules for Validator selection & rotation
* @param _validatorManager the new ValidatorManager contract * @param _validatorManager the new validator manager contract
*/ */
function setValidatorManager(address _validatorManager) external onlyOwner { function setValidatorManager(address _validatorManager) external onlyOwner {
_setValidatorManager(_validatorManager); _setValidatorManager(_validatorManager);
@ -106,8 +106,8 @@ abstract contract Common is ICommon, OwnableUpgradeable {
// ============ Internal Functions ============ // ============ Internal Functions ============
/** /**
* @notice Set the ValidatorManager * @notice Set the validator manager
* @param _validatorManager Address of the ValidatorManager * @param _validatorManager Address of the validator manager
*/ */
function _setValidatorManager(address _validatorManager) internal { function _setValidatorManager(address _validatorManager) internal {
require( require(

Loading…
Cancel
Save