예제 #1
0
bool ParseMoney(const std::string& str, CAmount& nRet)
{
    return ParseMoney(str.c_str(), nRet);
}
예제 #2
0
파일: util.cpp 프로젝트: semyazza/bitcoin
bool ParseMoney(const string& str, int64& nRet)
{
    return ParseMoney(str.c_str(), nRet);
}