From 794d55d024ed857c33881b3178d80df8afff3719 Mon Sep 17 00:00:00 2001 From: keating Date: Tue, 19 Mar 2024 13:27:35 -0400 Subject: [PATCH] Add natspec --- src/UniStaker.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/src/UniStaker.sol b/src/UniStaker.sol index fc437d7..ae9527a 100644 --- a/src/UniStaker.sol +++ b/src/UniStaker.sol @@ -598,6 +598,7 @@ contract UniStaker is INotifiableRewardReceiver, Multicall, EIP712, Nonces { emit RewardNotified(_amount, msg.sender); } + /// @notice Allows an address to increment their nonce and therefore invalidate any pending signed actions. function invalidateNonce() external { _useNonce(msg.sender); }