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
719 B

10 years ago
#!/usr/bin/env node
var _ = require('lodash');
var program = require('commander');
var Client = require('../lib/client');
var utils = require('./cli-utils');
10 years ago
program
.version('0.0.1')
.option('-c,--config [file]', 'Wallet config filename')
.option('-v,--verbose', 'be verbose')
10 years ago
.usage('[options] <txpid> [reason]')
10 years ago
.parse(process.argv);
var args = program.args;
var txpid = args[0] || '';
10 years ago
var reason = args[1] || '';
var client = utils.getClient(program);
10 years ago
client.getTxProposals({}, function(err, txps) {
utils.die(err);
10 years ago
var txp = utils.findOneTxProposal(txps, txpid);
client.rejectTxProposal(txp, reason, function(err, tx) {
utils.die(err);
10 years ago
console.log('Transaction rejected.');
});
});