Skip to content

Commit e464906

Browse files
authored
Update DiscreteERC20.sol
1 parent bb87e59 commit e464906

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/examples/DiscreteERC20.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ contract DiscreteERC20 {
3838

3939
/// @notice An event emitted in response to a balance request
4040
/// @param account Address whose balance was requested
41-
/// @param balance The balance of the account (unencrypted for event)
41+
/// @param balance The balance of the account, encrypted under the corresponding public key
4242
event ResponseBalance(address indexed account, Secp256k1Ciphertext balance);
4343

4444
/// @dev The total supply of tokens, encrypted
@@ -88,7 +88,7 @@ contract DiscreteERC20 {
8888

8989
/// @notice Emits an event with the response balance for a specified address
9090
/// @param target The address whose balance is being reported
91-
/// @param balance The balance of the specified address
91+
/// @param balance The balance of the specified address, encrypted under their public key
9292
function responseBalance(address target, Secp256k1Ciphertext calldata balance) external {
9393
emit ResponseBalance(target, balance);
9494
}

0 commit comments

Comments
 (0)