所在commit地址
@@ -70,12 +70,12 @@ contract CropManager {
 
     function rely(address usr) external auth {
         wards[usr] = 1;
-        emit Rely(msg.sender);
+        emit Rely(usr);
     }
 
     function deny(address usr) external auth {
         wards[usr] = 0;
-        emit Deny(msg.sender);
+        emit Deny(usr);
     }
 
     function setImplementation(address implementation_) external auth {

message:

李蓝天:改动分类:原因:

刘志浩:改动分类:原因: