diff --git a/src/index.ts b/src/index.ts index 19ee462..539f958 100644 --- a/src/index.ts +++ b/src/index.ts @@ -47,7 +47,7 @@ program .option('--raw', 'print processes with hex values and extra keys such as "createdAtHash"') .option('--active', 'returns only active process flows') .option('--disabled', 'returns only disabled process flows') - .option('-v', '--verbose', 'Returns all information about the transation') + .option('-v', '--verbose', 'Returns all information about the transation, default - false') .action(async (options: Process.CLIOptions) => { if (options.print) log(` @@ -123,7 +123,7 @@ program .option('--dryRun', 'to validate process and response locally before persisting on the chain, default - false') .option('-h, --host ', 'substrate blockchain host address or FQDM, default - "localhost"', 'localhost') .option('-p, --port ', 'specify host port number if it is not a default, default - 9944', '9944') - .option('-v', '--verbose', 'Returns all information, default false') + .option('-v', '--verbose', 'Returns all information, default - false') .requiredOption('-u, --user ', 'specify substrate blockchain user URI') .argument('', 'a valid process id that you would like to disable') .argument('', 'a version number of a process') diff --git a/src/lib/process/index.ts b/src/lib/process/index.ts index feeb0e1..48c036d 100644 --- a/src/lib/process/index.ts +++ b/src/lib/process/index.ts @@ -91,7 +91,7 @@ export const createProcess = async ( if(!verbose) return { process: null, - message: 'Dry run: transaction has not been created', + message: 'Verbose version - Dry run: transaction has not been created', name, version: expectedVersion, program