diff --git a/lib/server.js b/lib/server.js index 9f0da68..a590b15 100644 --- a/lib/server.js +++ b/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);