Skip to content

Commit

Permalink
fix: fixed small typo in a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jatZama committed Feb 20, 2024
1 parent 7db4765 commit 34f4be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/EncryptedERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}
Expand Down

0 comments on commit 34f4be5

Please sign in to comment.