aboutsummaryrefslogtreecommitdiff
path: root/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'util.cpp')
-rw-r--r--util.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/util.cpp b/util.cpp
index acfbcd6c90..8f6bf38c4d 100644
--- a/util.cpp
+++ b/util.cpp
@@ -314,6 +314,12 @@ string FormatMoney(int64 n, bool fPlus)
return str;
}
+
+bool ParseMoney(const string& str, int64& nRet)
+{
+ return ParseMoney(str.c_str(), nRet);
+}
+
bool ParseMoney(const char* pszIn, int64& nRet)
{
string strWhole;