Skip to content

Commit 0973815

Browse files
committed
Minor change
1 parent a742e67 commit 0973815

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CLI/commands/token_manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ async function mintTokens() {
297297
let fromTime = readlineSync.questionInt('Enter the time (Unix Epoch time) when the sale lockup period ends and the investor can freely sell his tokens: ');
298298
let toTime = readlineSync.questionInt('Enter the time (Unix Epoch time) when the purchase lockup period ends and the investor can freely purchase tokens from others: ');
299299
let expiryTime = readlineSync.questionInt('Enter the time till investors KYC will be validated (after that investor need to do re-KYC): ');
300-
let canBuyFromSTO = readlineSync.keyInYNStrict('Is the investor a restricted investor?');
300+
let canBuyFromSTO = readlineSync.keyInYNStrict('Can the investor buy from security token offerings?');
301301
await modifyWhitelist(investor, fromTime, toTime, expiryTime, canBuyFromSTO);
302302
break;
303303
case 'Mint tokens to a single address':

CLI/commands/transfer_manager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ async function generalTransferManager() {
398398
let toTime = readlineSync.questionInt(`Enter the time (Unix Epoch time) when the purchase lockup period ends and the investor can freely purchase tokens from others (now = ${now}): `, { defaultInput: now });
399399
let oneYearFromNow = Math.floor(Date.now() / 1000 + (60 * 60 * 24 * 365));
400400
let expiryTime = readlineSync.questionInt(`Enter the time until the investors KYC will be valid (after this time expires, the investor must re-do KYC) (1 year from now = ${oneYearFromNow}): `, { defaultInput: oneYearFromNow });
401-
let canBuyFromSTO = readlineSync.keyInYNStrict('Can the investor buy from security token offerings?');
401+
let canBuyFromSTO = readlineSync.keyInYNStrict('Can the investor buy from security token offerings?');
402402
let modifyWhitelistAction = currentTransferManager.methods.modifyWhitelist(investor, fromTime, toTime, expiryTime, canBuyFromSTO);
403403
let modifyWhitelistReceipt = await common.sendTransaction(modifyWhitelistAction);
404404
let modifyWhitelistEvent = common.getEventFromLogs(currentTransferManager._jsonInterface, modifyWhitelistReceipt.logs, 'ModifyWhitelist');
@@ -421,7 +421,7 @@ async function generalTransferManager() {
421421
let vSigned = readlineSync.questionInt('Enter v: ');
422422
let rSigned = readlineSync.question('Enter r: ');
423423
let sSigned = readlineSync.question('Enter s: ');
424-
let canBuyFromSTOSigned = readlineSync.keyInYNStrict('Is the investor a restricted investor?');
424+
let canBuyFromSTOSigned = readlineSync.keyInYNStrict('Can the investor buy from security token offerings?');
425425
let modifyWhitelistSignedAction = currentTransferManager.methods.modifyWhitelistSigned(investorSigned, fromTimeSigned, toTimeSigned, expiryTimeSigned, canBuyFromSTOSigned);
426426
let modifyWhitelistSignedReceipt = await common.sendTransaction(Issuer, modifyWhitelistSignedAction, defaultGasPrice);
427427
let modifyWhitelistSignedEvent = common.getEventFromLogs(currentTransferManager._jsonInterface, modifyWhitelistSignedReceipt.logs, 'ModifyWhitelist');

0 commit comments

Comments
 (0)