1
0
Fork 0
forked from lthn/blockchain

wallet2: removed redundant log

This commit is contained in:
sowle 2025-07-17 13:07:22 +03:00
parent cac85721a2
commit 63cf4e5dd6
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -3892,10 +3892,7 @@ bool wallet2::balance(std::list<wallet_public::asset_balance_entry>& balances, u
asset_flags &= ~aif_whitelisted;
if ((asset_flags & (aif_native_coin | aif_custom | aif_whitelisted)) == 0)
{
WLT_LOG_YELLOW("WARNING: unknown asset " << asset_id << " with total balance of " << balance_entry.total << " found and skipped; it's NOT included in the resulted balance", LOG_LEVEL_1);
continue;
}
wallet_public::asset_balance_entry& new_item = balances.emplace_back();
static_cast<wallet_public::asset_balance_entry_base&>(new_item) = balance_entry;