fix conflicts

This commit is contained in:
Matias Alejo Garcia 2014-01-23 17:38:30 -03:00
parent 0de7bcc132
commit fbb5e943cb
1 changed files with 7 additions and 1 deletions

View File

@ -43,7 +43,13 @@ var getTransaction = function(txid, cb) {
return cb(err);
}
if (!tx) return cb(new Error('Transaction not found'));
if (!tx) {
console.log('[transactions.js.48]:: TXid %d not found in RPC. CHECK THIS.', txid); //TODO
// not check this. no
tx.info = {
txid: txid,
};
}
return cb(null, tx.info);
});