Browse Source

fix err msg

activeAddress
Matias Alejo Garcia 10 years ago
parent
commit
dcfff424d7
  1. 2
      lib/server.js

2
lib/server.js

@ -889,7 +889,7 @@ WalletService.prototype.removePendingTx = function(opts, cb) {
var deleteLockTime = self.getRemainingDeleteLockTime(txp);
if (deleteLockTime > 0) {
return cb(new ClientError('TXCANNOTREMOVE', 'Cannot remove this tx proposal during locktime. Time remaining:' + deleteLockTime));
return cb(new ClientError('TXCANNOTREMOVE', 'Cannot remove this tx proposal during locktime'));
}
self.storage.removeTx(self.walletId, txp.id, function() {
self._notify('TxProposalRemoved', {}, cb);

Loading…
Cancel
Save