Commit e464906 1 parent bb87e59 commit e464906 Copy full SHA for e464906
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ contract DiscreteERC20 {
38
38
39
39
/// @notice An event emitted in response to a balance request
40
40
/// @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
42
42
event ResponseBalance (address indexed account , Secp256k1Ciphertext balance );
43
43
44
44
/// @dev The total supply of tokens, encrypted
@@ -88,7 +88,7 @@ contract DiscreteERC20 {
88
88
89
89
/// @notice Emits an event with the response balance for a specified address
90
90
/// @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
92
92
function responseBalance (address target , Secp256k1Ciphertext calldata balance ) external {
93
93
emit ResponseBalance (target, balance);
94
94
}
You can’t perform that action at this time.
0 commit comments