more debug code

This commit is contained in:
who asks? 2024-07-18 18:35:15 -06:00
parent 5722f42423
commit 67e634e734
1 changed files with 2 additions and 0 deletions

View File

@ -3022,6 +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;
// 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) {