File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,15 +51,15 @@ interface IVault {
5151 * @param token The address of the token. Use address(0) for ETH.
5252 * @return The balance of the specified token for the user.
5353 */
54- function balanceOf (address user , address token ) external view returns (uint256 );
54+ function balanceOf (address token ) external view returns (uint256 );
5555
5656 /**
5757 * @dev Returns the balances of multiple tokens for a user.
5858 * @param user The address of the user.
5959 * @param tokens The addresses of the tokens. Use address(0) for ETH.
6060 * @return The balances of the specified tokens for the user.
6161 */
62- function balancesOfTokens (address user , address [] calldata tokens ) external view returns (uint256 [] memory );
62+ function balancesOfTokens (address [] calldata tokens ) external view returns (uint256 [] memory );
6363
6464 /**
6565 * @dev Deposits a specified amount of tokens or ETH into the vault.
You can’t perform that action at this time.
0 commit comments