Guest User

Untitled

a guest
Nov 20th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. /**
  2. * @dev Change owner.
  3. * @param _who The address of new owner.
  4. */
  5. function changeOwner(address _who) external onlyOwner {
  6. assert(_who != address(0));
  7. commitDividend(msg.sender);
  8. commitDividend(_who);
  9. owner = _who;
Add Comment
Please, Sign In to add comment