added logging to PricesList

This commit is contained in:
dimxy
2019-04-23 11:23:24 +05:00
parent a4aad9e05b
commit b56dc25c8d

View File

@@ -1172,10 +1172,10 @@ UniValue PricesList(uint32_t filter, CPubKey mypk)
txid = it->first.txhash; txid = it->first.txhash;
if (GetTransaction(txid, vintx, hashBlock, false) != 0) if (GetTransaction(txid, vintx, hashBlock, false) != 0)
{ {
bool bAppend = false;
if (vintx.vout.size() > 0 && prices_betopretdecode(vintx.vout[vintx.vout.size() - 1].scriptPubKey, pk, height, amount, leverage, firstprice, vec, tokenid) == 'B' && if (vintx.vout.size() > 0 && prices_betopretdecode(vintx.vout[vintx.vout.size() - 1].scriptPubKey, pk, height, amount, leverage, firstprice, vec, tokenid) == 'B' &&
(mypk == CPubKey() || mypk == pk)) // if only mypubkey to list (mypk == CPubKey() || mypk == pk)) // if only mypubkey to list
{ {
bool bAppend = false;
if (filter == 0) if (filter == 0)
bAppend = true; bAppend = true;
else { else {
@@ -1191,6 +1191,7 @@ UniValue PricesList(uint32_t filter, CPubKey mypk)
if (bAppend) if (bAppend)
result.push_back(txid.GetHex()); result.push_back(txid.GetHex());
} }
std::cerr << "PricesList() " << " bettxid=" << txid.GetHex() << " mypk=" << HexStr(mypk) << " opret pk=" << HexStr(pk) << " filter=" << filter << " bAppend=" << bAppend << std::endl;
} }
} }
return(result); return(result);