allow you to send large amounts from RPC

This commit is contained in:
jed
2012-06-20 08:38:36 -07:00
parent a022f8304d
commit 1549ef4d9b
3 changed files with 4 additions and 4 deletions

View File

@@ -100,7 +100,7 @@ bool STAmount::setValue(const std::string& sAmount, const std::string& sCurrency
if (bInteger)
{
uValue = sAmount.empty() ? 0 : boost::lexical_cast<unsigned int>(sAmount);
uValue = sAmount.empty() ? 0 : boost::lexical_cast<uint64>(sAmount);
iOffset = 0;
}
else