diff --git a/src/questions/Question.sol b/src/questions/Question.sol index b26c452..4e04379 100644 --- a/src/questions/Question.sol +++ b/src/questions/Question.sol @@ -93,8 +93,7 @@ abstract contract Question is IQuestion, PlasaContext { option.voteCount++; option.pointsAtDeadline += votingPower(msg.sender); - uint256 timestamp = (block.timestamp / 1 days) * 1 days; - emit Voted(msg.sender, _getUsername(msg.sender), optionId, votingPower(msg.sender), timestamp); + emit Voted(msg.sender, _getUsername(msg.sender), optionId, votingPower(msg.sender), block.timestamp); } /// @inheritdoc IQuestion