make traverse always true for now.

This commit is contained in:
Christopher Jeffrey 2014-12-08 13:18:30 -08:00
parent 23f71c936c
commit 40da6fe0ae
1 changed files with 2 additions and 1 deletions

View File

@ -1169,7 +1169,8 @@ async_get_tx(uv_work_t *req) {
uint256 blockhash(data->blockhash);
CTransaction ctx;
if (get_tx(hash, blockhash, data->traverse, ctx)) {
//if (get_tx(hash, blockhash, data->traverse, ctx)) {
if (get_tx(hash, blockhash, true, ctx)) {
data->ctx = ctx;
data->blockhash = blockhash.GetHex();
} else {