From 34f4be5b66262f7ce98bbacb38fb945267c10d2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joseph-Andr=C3=A9=20Turk?= Date: Tue, 20 Feb 2024 18:50:19 +0100 Subject: [PATCH] fix: fixed small typo in a comment --- contracts/EncryptedERC20.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/EncryptedERC20.sol b/contracts/EncryptedERC20.sol index d9184c8..e9724e7 100644 --- a/contracts/EncryptedERC20.sol +++ b/contracts/EncryptedERC20.sol @@ -75,7 +75,7 @@ contract EncryptedERC20 is Reencrypt, Ownable2Step { return TFHE.reencrypt(TFHE.asEuint32(0), publicKey, 0); } - // Returns the balance of the caller encrypted under the provided public key. + // Returns the encrypted balance of the caller. function balanceOfMe() public view returns (euint32) { return balances[msg.sender]; }