Skip to content

Commit

Permalink
feat: small improvement when emitting event
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAustrian committed Aug 28, 2024
1 parent 3b6bba3 commit 8ec1383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/extensions/contracts/AllocationExtension.sol
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ abstract contract AllocationExtension is CoreBaseStrategy, IAllocationExtension
allocationStartTime = _allocationStartTime;
allocationEndTime = _allocationEndTime;

emit AllocationTimestampsUpdated(allocationStartTime, allocationEndTime, msg.sender);
emit AllocationTimestampsUpdated(_allocationStartTime, _allocationEndTime, msg.sender);
}

/// @dev Ensure the function is called before allocation start time
Expand Down

0 comments on commit 8ec1383

Please sign in to comment.