Commit 6beac0f2 by Yevhenii Babichenko

add previousOwner field to OwnershipTransferred event

parent b59469c1
...@@ -10,7 +10,7 @@ contract Ownable { ...@@ -10,7 +10,7 @@ contract Ownable {
address public owner; address public owner;
event OwnershipTransferred(address indexed newOwner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/** /**
......
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