Skip to content

Commit cd04aa3

Browse files
authored
Merge pull request #434 from PolymathNetwork/change-cappedSTO-description
updated description for cappedSTO
2 parents ab80213 + b8935b3 commit cd04aa3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/modules/STO/CappedSTOFactory.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ contract CappedSTOFactory is ModuleFactory {
1919
version = "1.0.0";
2020
name = "CappedSTO";
2121
title = "Capped STO";
22-
description = "Use to collects the funds and once the cap is reached then investment will be no longer entertained";
22+
description = "This smart contract creates a maximum number of tokens (i.e. hard cap) which the total aggregate of tokens acquired by all investors cannot exceed. Security tokens are sent to the investor upon reception of the funds (ETH or POLY), and any security tokens left upon termination of the offering will not be minted.";
2323
compatibleSTVersionRange["lowerBound"] = VersionUtils.pack(uint8(0), uint8(0), uint8(0));
2424
compatibleSTVersionRange["upperBound"] = VersionUtils.pack(uint8(0), uint8(0), uint8(0));
2525
}

test/b_capped_sto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ contract("CappedSTO", accounts => {
855855
assert.equal(web3.utils.hexToString(await I_CappedSTOFactory.getName.call()), "CappedSTO", "Wrong Module added");
856856
assert.equal(
857857
await I_CappedSTOFactory.description.call(),
858-
"Use to collects the funds and once the cap is reached then investment will be no longer entertained",
858+
"This smart contract creates a maximum number of tokens (i.e. hard cap) which the total aggregate of tokens acquired by all investors cannot exceed. Security tokens are sent to the investor upon reception of the funds (ETH or POLY), and any security tokens left upon termination of the offering will not be minted.",
859859
"Wrong Module added"
860860
);
861861
assert.equal(await I_CappedSTOFactory.title.call(), "Capped STO", "Wrong Module added");

0 commit comments

Comments
 (0)