1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-17 03:50:04 +02:00

include/libeosio/base58.hpp: Change decode function to accept vector instead of string.

This commit is contained in:
Henrik Hautakoski 2023-03-10 10:38:18 +01:00
parent ed59959b5b
commit a99a23ae9b
3 changed files with 8 additions and 6 deletions

View file

@ -108,7 +108,7 @@ std::string base58_encode(const std::vector<unsigned char>& vch) {
return base58_encode(vch.data(), vch.data() + vch.size());
}
bool base58_decode(const char* psz, std::string& out) {
bool base58_decode(const char* psz, std::vector<unsigned char>& out) {
// Skip leading spaces.
while (*psz && is_space(*psz))
psz++;
@ -160,7 +160,7 @@ bool base58_decode(const char* psz, std::string& out) {
return true;
}
bool base58_decode(const std::string& str, std::string& out) {
bool base58_decode(const std::string& str, std::vector<unsigned char>& out) {
return base58_decode(str.c_str(), out);
}