@@ -165,8 +165,8 @@ contract SecurityTokenRegistry is EternalStorage, Proxy {
165165 * @notice Initializes instance of STR
166166 * @param _polymathRegistry is the address of the Polymath Registry
167167 * @param _STFactory is the address of the Proxy contract for Security Tokens
168- * @param _stLaunchFee is the fee in POLY required to launch a token
169- * @param _tickerRegFee is the fee in POLY required to register a ticker
168+ * @param _stLaunchFee is the fee in USD required to launch a token
169+ * @param _tickerRegFee is the fee in USD required to register a ticker
170170 * @param _owner is the owner of the STR,
171171 * @param _getterContract Contract address of the contract which consists getter functions.
172172 */
@@ -252,7 +252,7 @@ contract SecurityTokenRegistry is EternalStorage, Proxy {
252252 function registerTicker (address _owner , string calldata _ticker , string calldata _tokenName ) external whenNotPausedOrOwner {
253253 require (_owner != address (0 ), "Owner should not be 0x " );
254254 require (bytes (_ticker).length > 0 && bytes (_ticker).length <= 10 , "Ticker length range (0,10] " );
255- // Attempt to charge the reg fee if it is > 0 POLY
255+ // Attempt to charge the reg fee if it is > 0 USD
256256 (uint256 _usdFee , uint256 _polyFee ) = _takeFee (TICKERREGFEE);
257257 string memory ticker = Util.upper (_ticker);
258258 require (_tickerAvailable (ticker), "Ticker is reserved " );
@@ -609,8 +609,8 @@ contract SecurityTokenRegistry is EternalStorage, Proxy {
609609 }
610610
611611 /**
612- * @notice Sets the ticker registration fee in POLY tokens. Only Polymath.
613- * @param _tickerRegFee is the registration fee in POLY tokens (base 18 decimals)
612+ * @notice Sets the ticker registration fee in USD tokens. Only Polymath.
613+ * @param _tickerRegFee is the registration fee in USD tokens (base 18 decimals)
614614 */
615615 function changeTickerRegistrationFee (uint256 _tickerRegFee ) external onlyOwner {
616616 uint256 fee = getUintValue (TICKERREGFEE);
@@ -620,8 +620,8 @@ contract SecurityTokenRegistry is EternalStorage, Proxy {
620620 }
621621
622622 /**
623- * @notice Sets the ticker registration fee in POLY tokens. Only Polymath.
624- * @param _stLaunchFee is the registration fee in POLY tokens (base 18 decimals)
623+ * @notice Sets the ticker registration fee in USD tokens. Only Polymath.
624+ * @param _stLaunchFee is the registration fee in USD tokens (base 18 decimals)
625625 */
626626 function changeSecurityLaunchFee (uint256 _stLaunchFee ) external onlyOwner {
627627 uint256 fee = getUintValue (STLAUNCHFEE);
0 commit comments