Skip to content

Commit

Permalink
Remove obsolete msg.sender calls
Browse files Browse the repository at this point in the history
  • Loading branch information
kronosapiens committed Oct 17, 2021
1 parent ec0f14a commit a374825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/colony/Colony.sol
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ contract Colony is BasicMetaTransaction, ColonyStorage, PatriciaTreeProofs {
if (domains[_domainId].deprecated != _deprecated) {
domains[_domainId].deprecated = _deprecated;

emit DomainDeprecated(msg.sender, _domainId, _deprecated);
emit DomainDeprecated(msgSender(), _domainId, _deprecated);
}

}
Expand Down

0 comments on commit a374825

Please sign in to comment.