Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdossa committed Jan 29, 2019
1 parent 71631d7 commit 81ff0dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/datastore/DataStore.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ contract DataStore is DataStoreStorage, IDataStore {
*/
function setSecurityToken(address _securityToken) external onlyOwner {
require(_securityToken != address(0), "Invalid address");
emit SecurityTokenChanged(securityToken, _securityToken);
emit SecurityTokenChanged(address(securityToken), _securityToken);
securityToken = ISecurityToken(_securityToken);
}

Expand Down

0 comments on commit 81ff0dc

Please sign in to comment.