This commit is contained in:
dimxy
2019-05-08 16:07:10 +05:00
parent 0730775cad
commit 3a563f7256

View File

@@ -2079,7 +2079,7 @@ UniValue PricesGetOrderbook()
SetCCunspents(addressCCunspents, cp->unspendableCCaddr, true); // cc marker
for (std::vector<std::pair<CAddressUnspentKey, CAddressUnspentValue> >::const_iterator it = addressCCunspents.begin(); it != addressCCunspents.end(); it++)
{
std::cerr << "totalfund calc txid=" << it->first.txhash.GetHex() << " nvout=" << it->first.index << " satoshis=" << it->second.satoshis;
std::cerr << "totalfund calc txid=" << it->first.txhash.GetHex() << " nvout=" << it->first.index << " satoshis=" << it->second.satoshis << std::endl;
totalfund += it->second.satoshis;
}