Skip to content

Commit

Permalink
add missing natspec (#2321)
Browse files Browse the repository at this point in the history
  • Loading branch information
sparrowDom authored Dec 5, 2024
1 parent 74bd138 commit 040ad7a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions contracts/contracts/token/OUSD.sol
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ contract OUSD is Governable {
* @param _from The address you want to send tokens from.
* @param _to The address you want to transfer to.
* @param _value The amount of tokens to be transferred.
* @return true on success.
*/
function transferFrom(
address _from,
Expand Down Expand Up @@ -333,6 +334,7 @@ contract OUSD is Governable {
* tokens on behalf of msg.sender.
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
* @return true on success.
*/
function approve(address _spender, uint256 _value) external returns (bool) {
allowances[msg.sender][_spender] = _value;
Expand Down

0 comments on commit 040ad7a

Please sign in to comment.