From 0c2b870da2da631ed9169f25b5bace0a46902191 Mon Sep 17 00:00:00 2001 From: Domen Grabec Date: Thu, 5 Dec 2024 01:06:19 +0100 Subject: [PATCH] add missing natspec --- contracts/contracts/token/OUSD.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contracts/contracts/token/OUSD.sol b/contracts/contracts/token/OUSD.sol index 8bd07380bf..f022941208 100644 --- a/contracts/contracts/token/OUSD.sol +++ b/contracts/contracts/token/OUSD.sol @@ -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, @@ -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;