You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
750 B
29 lines
750 B
#!/usr/bin/env node
|
|
|
|
var _ = require('lodash');
|
|
var program = require('commander');
|
|
var Client = require('../lib/client');
|
|
var utils = require('./cli-utils');
|
|
program = utils.configureCommander(program);
|
|
|
|
program
|
|
.usage('[options] <txpid> [reason]')
|
|
.parse(process.argv);
|
|
|
|
var args = program.args;
|
|
var txpid = args[0] || '';
|
|
var reason = args[1] || '';
|
|
var client = utils.getClient(program);
|
|
|
|
client.getTxProposals({}, function(err, txps) {
|
|
utils.die(err);
|
|
|
|
var txp = utils.findOneTxProposal(txps, txpid);
|
|
client.rejectTxProposal(txp, reason, function(err, tx) {
|
|
utils.die(err);
|
|
if (tx.status == 'rejected')
|
|
console.log('Transaction finally rejected.');
|
|
else
|
|
console.log('Transaction rejected by you.');
|
|
});
|
|
});
|
|
|