Make NewcoinAddress::setSeedGeneric more stringent.

This commit is contained in:
Arthur Britto
2012-06-20 13:37:28 -07:00
parent 3ccf91ffe0
commit f0be92f4f0

View File

@@ -716,7 +716,9 @@ bool NewcoinAddress::setSeedGeneric(const std::string& strText)
if (strText.empty()
|| naTemp.setAccountID(strText)
|| naTemp.setAccountPublic(strText)
|| naTemp.setAccountPrivate(strText))
|| naTemp.setAccountPrivate(strText)
|| naTemp.setNodePublic(strText)
|| naTemp.setNodePrivate(strText))
{
bResult = false;
}