| 4 | namespace ul::util { |
| 5 | |
| 6 | std::string FormatProgramId(const u64 program_id) { |
| 7 | std::stringstream strm; |
| 8 | strm << std::uppercase << std::setfill('0') << std::setw(16) << std::hex << program_id; |
| 9 | return strm.str(); |
| 10 | } |
| 11 | |
| 12 | std::string FormatAccount(const AccountUid value) { |
| 13 | auto bytes_v = reinterpret_cast<const u8*>(value.uid); |
no outgoing calls
no test coverage detected