From ff2f659724d664c632d2b1ee4556bc4cb71b0083 Mon Sep 17 00:00:00 2001 From: ungaro Date: Thu, 14 Nov 2024 14:17:57 -0500 Subject: [PATCH] add extra comment --- nest/src/token/pUSD.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest/src/token/pUSD.sol b/nest/src/token/pUSD.sol index 001ad96..7b55b24 100644 --- a/nest/src/token/pUSD.sol +++ b/nest/src/token/pUSD.sol @@ -95,7 +95,7 @@ contract pUSD is Initializable, ERC20Upgradeable, AccessControlUpgradeable, UUPS function deposit( uint256 assets, address receiver, - address controller + address controller // Required by ComponentToken interface but not used in this implementation ) public virtual override returns (uint256 shares) { // Calculate shares to mint shares = previewDeposit(assets);