Allow to full network limit in Amount::isLegalNet

This commit is contained in:
sublimator
2013-12-20 17:09:40 +07:00
committed by Vinnie Falco
parent 21faf8eaeb
commit 07959b3cc9

View File

@@ -566,7 +566,7 @@ public:
}
bool isLegalNet () const
{
return !mIsNative || (mValue < cMaxNativeN);
return !mIsNative || (mValue <= cMaxNativeN);
}
operator bool () const
{