Commit 09b1926c by Dora E. Mondrian Committed by GitHub

Use address type

parent d7b67eca
......@@ -34,6 +34,6 @@ contract Claimable is Ownable {
function claimOwnership() onlyPendingOwner public {
OwnershipTransferred(owner, pendingOwner);
owner = pendingOwner;
pendingOwner = 0x0;
pendingOwner = address(0);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment