diff --git a/src/currency_core/currency_format_utils.cpp b/src/currency_core/currency_format_utils.cpp index 36de2bbd..3261306f 100644 --- a/src/currency_core/currency_format_utils.cpp +++ b/src/currency_core/currency_format_utils.cpp @@ -1948,9 +1948,11 @@ namespace currency std::vector shuffled_dsts(destinations); if (asset_id_for_destinations != currency::null_hash) { + LOG_PRINT_MAGENTA("[Asset descriptor operation]: shuffled_dsts.size()=" << shuffled_dsts.size(), LOG_LEVEL_0); //must be asset publication for (auto& item : shuffled_dsts) { + LOG_PRINT_MAGENTA("[Asset descriptor operation]: item.asset_id: " << item.asset_id << ", amount: " << item.amount, LOG_LEVEL_0); if (item.asset_id == currency::ffff_hash) { item.asset_id = asset_id_for_destinations; @@ -1961,6 +1963,7 @@ namespace currency pado->descriptor.current_supply = amount_of_assets; //TODO: temporary summary_inputs_money += amount_of_assets; + LOG_PRINT_MAGENTA("[Asset descripto operation]: amount_of_assets: " << amount_of_assets << ", summary_inputs_money: " << summary_inputs_money, LOG_LEVEL_0); } diff --git a/src/wallet/wallet_errors.h b/src/wallet/wallet_errors.h index 9aed4074..e45eafb6 100644 --- a/src/wallet/wallet_errors.h +++ b/src/wallet/wallet_errors.h @@ -463,6 +463,7 @@ namespace tools ss << currency::get_account_address_as_str(a) << ";"; } ss << " anount: " << currency::print_money(dst.amount); + ss << " asset_id: " << dst.asset_id; } ss << "\nunlock_time: " << m_unlock_time;