Skip to content

Commit

Permalink
natspec comments get added foe getSTODetails() (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
satyamakgec authored and pabloruiz55 committed Oct 25, 2018
1 parent 68ac39f commit 56db11e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions contracts/modules/STO/CappedSTO.sol
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,13 @@ contract CappedSTO is ISTO, ReentrancyGuard {

/**
* @notice Return the STO details
* @return Unixtimestamp at which offering gets start.
* @return Unixtimestamp at which offering ends.
* @return Number of tokens this STO will be allowed to sell to investors.
* @return Amount of funds raised
* @return Number of individual investors this STO have.
* @return Amount of tokens get sold.
* @return Boolean value to justify whether the fund raise type is POLY or not, i.e true for POLY.
*/
function getSTODetails() public view returns(uint256, uint256, uint256, uint256, uint256, uint256, uint256, bool) {
return (
Expand Down

0 comments on commit 56db11e

Please sign in to comment.