Skip to content

Commit

Permalink
Rename initiateChange() function to emitInitiateChange()
Browse files Browse the repository at this point in the history
  • Loading branch information
varasev committed Jan 25, 2019
1 parent 72ee671 commit e53da57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/abstracts/ValidatorSetBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ contract ValidatorSetBase is OwnedEternalStorage, IValidatorSet {

// =============================================== Setters ========================================================

function initiateChange() external {
function emitInitiateChange() external {
if (!isValidator(msg.sender)) return;
if (!initiateChangeAllowed()) return;
emit InitiateChange(blockhash(block.number - 1), getPendingValidators());
Expand Down

0 comments on commit e53da57

Please sign in to comment.