-
dangerousfreedomHello, two questions today:... (full message at libera.ems.host/_matrix/media/r0/do…cf8c687e310e570010b2ba7daa886ac6908)
-
dangerousfreedom2) What is the easiest way to print the key_image(crypto::key_image) and the public key(crypto::public_key) with printf?
-
dangerousfreedomThank you again!
-
UkoeHBto print the keys you need to convert to base58 first
-
UkoeHBor hex
-
dangerousfreedomThank you UkoeHB . Is there a function that does these conversions easily?
-
moneromoooprint("%s\n", epee::string_tools::pod_to_hex(key).c_str());
-
dangerousfreedommoneromooo: Great! Always good to ask :)