Use address type

pull/510/head
Dora E. Mondrian 7 years ago committed by GitHub
parent d7b67eca52
commit 09b1926c41
  1. 2
      contracts/ownership/Claimable.sol

@ -34,6 +34,6 @@ contract Claimable is Ownable {
function claimOwnership() onlyPendingOwner public {
OwnershipTransferred(owner, pendingOwner);
owner = pendingOwner;
pendingOwner = 0x0;
pendingOwner = address(0);
}
}

Loading…
Cancel
Save