Merge pull request #143 from matiu/bug/tx-list2

fix conflicts
This commit is contained in:
Matias Alejo Garcia 2014-01-23 12:42:59 -08:00
commit b1b6021246
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);
});