more debug code

This commit is contained in:
who asks? 2024-07-18 18:38:54 -06:00
parent 67e634e734
commit 26913952a6
1 changed files with 2 additions and 2 deletions

View File

@ -3022,8 +3022,8 @@ bool wallet_rpc_server::on_import_encrypted_key_images(const wallet_rpc::COMMAND
}
std::out << "encrypted_key_images_blob: " << req.encrypted_key_images_blob;
std::out << "data: " << data;
std::cout << "encrypted_key_images_blob: " << req.encrypted_key_images_blob;
std::cout << "data: " << data;
// Debug: Print the first few bytes of the decoded data
std::cout << "First 32 bytes of decoded data: ";
for (size_t i = 0; i < std::min(data.size(), size_t(32)); ++i) {