mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-19 18:15:50 +00:00
12 lines
345 B
C++
12 lines
345 B
C++
#include "uint256.h"
|
|
#include <string>
|
|
|
|
extern uint160 protobufTo160(const std::string& buf);
|
|
extern uint256 protobufTo256(const std::string& hash);
|
|
extern uint160 humanTo160(const std::string& buf);
|
|
extern bool humanToPK(const std::string& buf,std::vector<unsigned char>& retVec);
|
|
|
|
|
|
extern bool u160ToHuman(uint160& buf, std::string& retStr);
|
|
|