Use address type

This commit is contained in:
Dora E. Mondrian
2017-10-23 03:10:40 -07:00
committed by GitHub
parent d7b67eca52
commit 09b1926c41

View File

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