log bad signatures data

This commit is contained in:
Ivan Socolsky 2016-04-27 12:45:00 -03:00
parent 0ffc4f39d5
commit 476a2d49ed
No known key found for this signature in database
GPG Key ID: 10AD370F4F3056FB
1 changed files with 8 additions and 1 deletions

View File

@ -2179,8 +2179,15 @@ WalletService.prototype.signTx = function(opts, cb) {
var copayer = wallet.getCopayer(self.copayerId);
if (!txp.sign(self.copayerId, opts.signatures, copayer.xPubKey))
if (!txp.sign(self.copayerId, opts.signatures, copayer.xPubKey)) {
log.warn('Error signing transaction (BAD_SIGNATURES)');
log.warn('Wallet id: ', self.walletId);
log.warn('Copayer id: ', self.copayerId);
log.warn('Client version: ', self.clientVersion);
log.warn('Arguments: ', JSON.stringify(opts));
log.warn('Transaction proposal: ', JSON.stringify(txp));
return cb(Errors.BAD_SIGNATURES);
}
self.storage.storeTx(self.walletId, txp, function(err) {
if (err) return cb(err);