Remove braces, fix benchmark and pass callback.

This commit is contained in:
Braydon Fuller 2015-07-16 16:09:30 -04:00
parent 9020ddb85c
commit b738a5fb84
3 changed files with 23 additions and 32 deletions

View File

@ -90,7 +90,7 @@ bitcoind.on('ready', function() {
c = 0;
}
var hash = fixtureData.txHashes[c];
bitcoind.getTransaction(hash, function(err, tx) {
bitcoind.getTransaction(hash, true, function(err, tx) {
if (err) {
throw err;
}

View File

@ -328,12 +328,7 @@ Bitcoin.prototype.isSpent = function(txid, outputIndex) {
};
Bitcoin.prototype.getTransaction = function(txid, queryMempool, callback) {
return bitcoindjs.getTransaction(txid, queryMempool, function(err, tx) {
if (err) {
return callback(err);
}
return callback(null, tx);
});
return bitcoindjs.getTransaction(txid, queryMempool, callback);
};
Bitcoin.prototype.getTransactionWithBlock = function(txid, blockhash, callback) {

View File

@ -804,8 +804,6 @@ async_get_tx(uv_work_t *req) {
uint256 blockhash;
CTransaction ctx;
{
if (data->queryMempool) {
LOCK(cs_main);
{
@ -839,8 +837,6 @@ async_get_tx(uv_work_t *req) {
}
}
}
static void