do not use leveldb.

This commit is contained in:
Christopher Jeffrey 2014-11-06 16:16:41 -08:00
parent bcbcd1178d
commit e25d11d00e
1 changed files with 1 additions and 16 deletions

View File

@ -2032,22 +2032,7 @@ async_get_addrtx(uv_work_t *req) {
BOOST_FOREACH(const CTransaction& ctx, cblock.vtx) {
// vin
BOOST_FOREACH(const CTxIn& txin, ctx.vin) {
// prev_txid
// std::string prev_txid = txin.prevout.hash.GetHex();
// asm
// std::string input_asm = txin.scriptSig.ToString();
// hex
// std::string input_hex = HexStr(txin.scriptSig.begin(), txin.scriptSig.end());
// format:
// { sig, pubkey }
// pseudocode:
// pubkey = input_asm.split().get(1);
// addr = base58(dsha(pubkey));
if (txin.scriptSig == expected) {
if (txin.scriptSig.ToString() == expected.ToString()) {
ctx_list *item = new ctx_list();
item->ctx = ctx;
uint256 hash(((CMerkleTx)ctx).hashBlock.GetHex());