Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/core/ElasticDAO.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ contract ElasticDAO is ReentrancyGuard {
bool public initialized;

event ElasticGovernanceTokenDeployed(address indexed tokenAddress);
event MaxVotingLambdaChanged(bytes32 settingName, uint256 value);
event ControllerChanged(bytes32 settingName, address value);
event MaxVotingLambdaChanged(uint256 value);
event ControllerChanged(address value);
event ExitDAO(address indexed memberAddress, uint256 shareAmount, uint256 ethAmount);
event FailedToFullyPenalize(
address indexed memberAddress,
Expand Down Expand Up @@ -349,7 +349,7 @@ contract ElasticDAO is ReentrancyGuard {
success = tokenContract.setMinter(controller);
require(success, 'ElasticDAO: Set Minter failed during setController');

emit ControllerChanged('setController', controller);
emit ControllerChanged(controller);
}

/**
Expand All @@ -364,7 +364,7 @@ contract ElasticDAO is ReentrancyGuard {
dao.maxVotingLambda = _maxVotingLambda;
daoStorage.serialize(dao);

emit MaxVotingLambdaChanged('setMaxVotingLambda', _maxVotingLambda);
emit MaxVotingLambdaChanged(_maxVotingLambda);
}

/**
Expand Down