diff --git a/packages/cicero-cli/index.js b/packages/cicero-cli/index.js index 2d1f497a4..208f2daea 100755 --- a/packages/cicero-cli/index.js +++ b/packages/cicero-cli/index.js @@ -602,37 +602,6 @@ require('yargs') return; } }) - .command('verify', 'verify the signatures of party/individuals who have signed the contarct', (yargs) => { - yargs.option('contract', { - describe: 'path to a smart legal contract slc file', - type: 'string' - }); - yargs.option('warnings', { - describe: 'print warnings', - type: 'boolean', - default: false - }); - }, (argv) => { - if (argv.verbose) { - Logger.info(`verifying signatures of contract ${argv.contract}`); - } - - try { - argv = Commands.validateVerifyArgs(argv); - const options = { - warnings: argv.warnings, - }; - return Commands.verify(argv.contract, options) - .then((result) => { - if(result) {Logger.info(JSON.stringify(result));} - }) - .catch((err) => { - Logger.error(err.message); - }); - } catch (err){ - Logger.error(err.message); - } - }) .command('sign', 'sign a contract', (yargs) => { yargs.option('contract', { describe: 'path to a smart legal contract slc file',