From af9628bbe6854a92b58b8ca0ab640346aeacf046 Mon Sep 17 00:00:00 2001 From: Kresh Date: Thu, 3 Oct 2024 13:22:26 +0400 Subject: [PATCH] fix: add account param to slashableBalanceOf() --- src/interfaces/vault/IVault.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/interfaces/vault/IVault.sol b/src/interfaces/vault/IVault.sol index 9fbb73a1..5cc168de 100644 --- a/src/interfaces/vault/IVault.sol +++ b/src/interfaces/vault/IVault.sol @@ -215,7 +215,8 @@ interface IVault is IMigratableEntity, IVaultStorage { /** * @notice Get a total amount of the collateral that can be slashed for a given account. - * @return total amount of the slashable collateral + * @param account account to get the slashable collateral for + * @return total amount of the account's slashable collateral */ function slashableBalanceOf( address account