From e68a09d5da5899ebe07fc7bdaafc601b689b01c0 Mon Sep 17 00:00:00 2001 From: Pranav Bhardwaj Date: Tue, 2 Jul 2024 22:49:07 -0400 Subject: [PATCH] add event docs --- src/staking/SnapshotStakingPool.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/staking/SnapshotStakingPool.sol b/src/staking/SnapshotStakingPool.sol index c41ab33..d6d07e6 100644 --- a/src/staking/SnapshotStakingPool.sol +++ b/src/staking/SnapshotStakingPool.sol @@ -17,7 +17,9 @@ contract SnapshotStakingPool is ISnapshotStakingPool, Ownable, ERC20Snapshot, Re /* EVENTS */ + /// @notice Emitted when the reward distributor is changed. event DistributorChanged(address newDistributor); + /// @notice Emitted when the snapshot delay is changed. event SnapshotDelayChanged(uint256 newSnapshotDelay); /* IMMUTABLES */