claimable.rst 523 B

1234567891011121314151617181920
  1. Claimable
  2. =============================================
  3. Extension for the Ownable contract, where the ownership needs to be claimed
  4. transfer(address newOwner) onlyOwner
  5. """"""""""""""""""""""""""""""""""""""
  6. Sets the passed address as the pending owner.
  7. modifier onlyPendingOwner
  8. """"""""""""""""""""""""""""""""""""""
  9. Function only runs if called by pending owner.
  10. claimOwnership( ) onlyPendingOwner
  11. """"""""""""""""""""""""""""""""""""""
  12. Completes transfer of ownership by setting pending owner as the new owner.