Less noise to stderr

This commit is contained in:
Duke Leto
2018-07-17 22:33:19 +00:00
parent 3eb535b8b4
commit 539080b3a4

View File

@@ -435,7 +435,7 @@ extern UniValue CBlockTreeDB::Snapshot()
std::map <std::string, CAmount>::iterator pos = addressAmounts.find(address);
if (pos == addressAmounts.end()) {
// insert new address + utxo amount
fprintf(stderr, "inserting new address %s with amount %li\n", address.c_str(), nValue);
//fprintf(stderr, "inserting new address %s with amount %li\n", address.c_str(), nValue);
addressAmounts[address] = nValue;
totalAddresses++;
} else {